On 19/07/2016 at 02:58, xxxxxxxx wrote:
User Information:
Cinema 4D Version: R17
Platform: Windows ;
Language(s) : C++ ;
---------
Hello.
I have a class that inherits GeDialog and I use MenuSubBegin and MenuSubEnd to fill its menu.
Everything works fine here.
Now, in the menu bar, I want to add some other dialog tools as well aligned to the left.
So I use:
GroupBeginInMenuLine();
GroupBegin(MY_MENU_GROUP, BFH_LEFT, 0, 1, String(), 0);
GroupSpace(4,2);
AddComboBox(ANY_PARAM,0,150,0);
GroupEnd();
GroupEnd();
The problem is that no matter which parameters I use in the GroupBegin (e.g. BFH_LEFT), I cannot align it to the left. Do I do anything wrong ?
Thank you for your time.