Attribute Manager Spacing
-
On 29/08/2017 at 11:06, xxxxxxxx wrote:
Hi, I wanted to have a space between two elements in the Attribute Manager. I was able to create a space in Pre R18 on Mac and Pre R17 by using a separator like this.
.res GROUP { COLUMNS 4; BUTTON BUTTON1{} BUTTON BUTTON2{} SEPARATOR EMPTYSEP{SCALE_H;LINE;} BUTTON BUTTON3{} } .str STRINGTABLE Test { BUTTON1 "Insert Render Settings"; BUTTON2 "Open Browser"; EMPTYSEP "NONE"; BUTTON3 "?"; }
In Pre R19 it looks like this:
In R19 it looks like this:
It's no longer working, is there something I can do to fix it or an alternative way to achieve the same effect?
-
On 31/08/2017 at 06:17, xxxxxxxx wrote:
Hi DSchimdt,
i confirm that the behavior you mentioned as present R19 it's indeed the correct one and it's also the same visual you got in R18 and R17. In any case to achieve the desired visual please use:
.resGROUP { COLUMNS 4; BUTTON BUTTON1{} BUTTON BUTTON2{} STATICTEXT EMPTYSEP{SCALE_H;} BUTTON BUTTON3{} }
.str
BUTTON1 "Insert Render Settings"; BUTTON2 "Open Browser"; STEXT ""; BUTTON3 "?";
Best, Riccardo
-
On 31/08/2017 at 16:24, xxxxxxxx wrote:
This worked perfectly, thank you very much!