CHANGED: #1471 The GUI Editor tools should be added to a submenu of the tools menu, not the tools menu itself, since it's getting crowded in there.
This commit is contained in:
parent
9aaa139691
commit
3db783f991
1 changed files with 6 additions and 4 deletions
|
@ -146,21 +146,23 @@ namespace GUIEditor
|
|||
QMenu *menu = mm->menu( Core::Constants::M_TOOLS );
|
||||
if( menu != NULL )
|
||||
{
|
||||
QMenu *m = menu->addMenu( "GUI Editor" );
|
||||
|
||||
QAction *a = new QAction( "Widget Properties", this );
|
||||
connect( a, SIGNAL( triggered( bool ) ), widgetProps, SLOT( show() ) );
|
||||
menu->addAction( a );
|
||||
m->addAction( a );
|
||||
|
||||
a = new QAction( "Link Editor", this );
|
||||
connect( a, SIGNAL( triggered( bool ) ), linkEditor, SLOT( show() ) );
|
||||
menu->addAction( a );
|
||||
m->addAction( a );
|
||||
|
||||
a = new QAction( "Proc Editor", this );
|
||||
connect( a, SIGNAL( triggered( bool ) ), procEditor, SLOT( show() ) );
|
||||
menu->addAction( a );
|
||||
m->addAction( a );
|
||||
|
||||
a = new QAction( "Project Window", this );
|
||||
connect( a, SIGNAL( triggered( bool ) ), projectWindow, SLOT( show() ) );
|
||||
menu->addAction( a );
|
||||
m->addAction( a );
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue