[ui] sort items in the view > panels sub-menu

This commit is contained in:
nirvn 2018-02-15 11:18:15 +07:00 committed by Mathieu Pellerin
parent 8697c79993
commit e0b1d37cac

View File

@ -1258,6 +1258,10 @@ QgisApp::QgisApp( QSplashScreen *splash, bool restorePlugins, bool skipVersionCh
setupDuplicateFeaturesAction();
QList<QAction *> actions = mPanelMenu->actions();
std::sort( actions.begin(), actions.end(), cmpByText_ );
mPanelMenu->insertActions( nullptr, actions );
// update windows
qApp->processEvents();