Improvements to the tooltiptext popup

NeoTechni

Well-Known Member
Licensed User
Longtime User
1) Instead of showing every method of a variable, only show the one the code refers to.

ie:
B4X:
dim temp as rect
temp.x = 1

If I mouseover temp.x, it should pop up with the contents of temp.x, not all of temp.

Why? I have types with a lot more methods, arrays with a lot of cells. And in those cases, it just aborts at a certain length instead of showing me the one I want

2) When typing parameters in a sub, bold the parameter you're currently on. I have subs with a lot of parameters, and sometimes it's hard to keep track of which one you're on. I have to rely on the pre-compiler warning me I'm missing one, or have one too many, or it's the wrong type.

3) Sometimes it sets it's alpha to something between 0 and 255 for some unknown reason. It should either go away or be fully visible.
 
Top