@@ -231,21 +231,25 @@ def initGui(self):
231
231
self .resultsDock .visibilityChanged .connect (self .resultsAction .setChecked )
232
232
self .resultsAction .toggled .connect (self .resultsDock .setUserVisible )
233
233
234
- self .optionsAction = QAction (
235
- QgsApplication .getThemeIcon ("/mActionOptions.svg" ),
236
- self .tr ('Options' ), self .iface .mainWindow ())
237
- self .optionsAction .setObjectName ('optionsAction' )
238
- self .optionsAction .triggered .connect (self .openProcessingOptions )
239
- self .toolbox .processingToolbar .addAction (self .optionsAction )
234
+ self .toolbox .processingToolbar .addSeparator ()
240
235
241
236
self .editSelectedAction = QAction (
242
- QgsApplication .getThemeIcon ("/mActionToggleEditing .svg" ),
237
+ QgsApplication .getThemeIcon ("/mActionProcessSelected .svg" ),
243
238
self .tr ('Edit Selected Features' ), self .iface .mainWindow ())
244
239
self .editSelectedAction .setObjectName ('editSelectedFeatures' )
245
240
self .editSelectedAction .setCheckable (True )
246
241
self .editSelectedAction .toggled .connect (self .editSelected )
247
242
self .toolbox .processingToolbar .addAction (self .editSelectedAction )
248
243
244
+ self .toolbox .processingToolbar .addSeparator ()
245
+
246
+ self .optionsAction = QAction (
247
+ QgsApplication .getThemeIcon ("/mActionOptions.svg" ),
248
+ self .tr ('Options' ), self .iface .mainWindow ())
249
+ self .optionsAction .setObjectName ('optionsAction' )
250
+ self .optionsAction .triggered .connect (self .openProcessingOptions )
251
+ self .toolbox .processingToolbar .addAction (self .optionsAction )
252
+
249
253
menuBar = self .iface .mainWindow ().menuBar ()
250
254
menuBar .insertMenu (
251
255
self .iface .firstRightStandardMenu ().menuAction (), self .menu )
0 commit comments