@@ -428,16 +428,16 @@ void QgisApp::createActions()
428
428
// #endif
429
429
assert (connect (mActionAddLayer , SIGNAL (triggered ()), this , SLOT (addDatabaseLayer ())));
430
430
//
431
- mActionRemoveLayer = new QAction (QIcon (myIconPath+" /mActionRemoveLayer.png" ), tr (" Remove Layer" ), this );
432
- mActionRemoveLayer ->setShortcut (tr (" Ctrl+D" ));
433
- mActionRemoveLayer ->setStatusTip (tr (" Remove a Layer" ));
434
- connect (mActionRemoveLayer , SIGNAL (triggered ()), this , SLOT (removeLayer ()));
435
- //
436
431
mActionNewVectorLayer = new QAction (QIcon (myIconPath+" /mActionNewVectorLayer.png" ), tr (" New Vector Layer" ), this );
437
432
mActionNewVectorLayer ->setShortcut (tr (" N" ));
438
433
mActionNewVectorLayer ->setStatusTip (tr (" Create a New Vector Layer" ));
439
434
connect (mActionNewVectorLayer , SIGNAL (triggered ()), this , SLOT (newVectorLayer ()));
440
435
//
436
+ mActionRemoveLayer = new QAction (QIcon (myIconPath+" /mActionRemoveLayer.png" ), tr (" Remove Layer" ), this );
437
+ mActionRemoveLayer ->setShortcut (tr (" Ctrl+D" ));
438
+ mActionRemoveLayer ->setStatusTip (tr (" Remove a Layer" ));
439
+ connect (mActionRemoveLayer , SIGNAL (triggered ()), this , SLOT (removeLayer ()));
440
+ //
441
441
mActionAddAllToOverview = new QAction (QIcon (myIconPath+" /mActionAddAllToOverview.png" ), tr (" Add All To Overview" ), this );
442
442
mActionAddAllToOverview ->setShortcut (tr (" +" ));
443
443
mActionAddAllToOverview ->setStatusTip (tr (" Show all layers in the overview map" ));
@@ -766,8 +766,8 @@ void QgisApp::createToolBars()
766
766
mLayerToolBar ->addAction (mActionAddLayer );
767
767
#endif
768
768
mLayerToolBar ->addAction (mActionAddWmsLayer );
769
- mLayerToolBar ->addAction (mActionRemoveLayer );
770
769
mLayerToolBar ->addAction (mActionNewVectorLayer );
770
+ mLayerToolBar ->addAction (mActionRemoveLayer );
771
771
mLayerToolBar ->addAction (mActionInOverview );
772
772
mLayerToolBar ->addAction (mActionAddAllToOverview );
773
773
mLayerToolBar ->addAction (mActionRemoveAllFromOverview );
0 commit comments