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:
dfighter1985 2012-07-18 08:30:54 +02:00
parent 9aaa139691
commit 3db783f991

View file

@ -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 );
}
}