mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-27 10:33:50 +00:00
This resolves menu order, cleanup and close/re-open issues, as well as crashes on close. It also modifies the look slightly to look closer to the windows menubar to keep a cohesive look regardless of platform.
14 lines
No EOL
359 B
Text
14 lines
No EOL
359 B
Text
//--- OBJECT WRITE BEGIN ---
|
|
%guiContent = new GuiControl(PlatformGenericMenubar) {
|
|
profile = "GuiModelessDialogProfile";
|
|
|
|
new GuiPlatformGenericMenuBar()
|
|
{
|
|
internalName = "menubar";
|
|
extent = "1024 20";
|
|
minExtent = "320 20";
|
|
horizSizing = "width";
|
|
profile = "GuiMenuBarProfile";
|
|
};
|
|
};
|
|
//--- OBJECT WRITE END --- |