How to show the complete parameter name on the Parameters window?

I have done some tests to try
to show the complete parameter name on the Parameters window.

Firstly, I've put the longest parameter name on the top,
and my full code is as below:

aaa = Param("1234567", 70, 10, 100, 1); 
ccc = Param("12345", 50, 10, 100, 1); 
bbb = Param("123", 30, 10, 100, 1);

As you see the screen cut below, the first name is cut:
image

Secondly, I've put the longest parameter name on the bottom,
and my full code is as below:

bbb = Param("123", 30, 10, 100, 1);
ccc = Param("12345", 50, 10, 100, 1); 
aaa = Param("1234567", 70, 10, 100, 1); 

then you can see the longest one is still being cut.
image

so I've tried one more

bbb = Param("123", 30, 10, 100, 1);
ccc = Param("12345", 50, 10, 100, 1); 
aaa = Param("1234567", 70, 10, 100, 1); 
aaa = Param("123456789", 90, 10, 100, 1); 

it is still the longest one being cut.
image

Q) Is it the rule, the longest parameter name must be cut?
or is there another way to show the complete parameter name on the Parameters window?

Thank you very much :smiley:!

There is no maximum size. This only appears on certain combinations of High-DPI screens and font sizes. This is already addressed in development version, so just wait for next upgrade.

1 Like

I use "empty" ParamStr on top:
empty = ParamStr( "= = = = = = = = = = = = = " , "= = = = = = = = = = = = =" );

There is also problem with always very small buttons:
image

1 Like

This topic was automatically closed 100 days after the last reply. New replies are no longer allowed.