File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2112,10 +2112,10 @@ void QgisApp::createToolBars()
2112
2112
QToolButton *bt = new QToolButton ( mAttributesToolBar );
2113
2113
bt->setPopupMode ( QToolButton::MenuButtonPopup );
2114
2114
QList<QAction*> selectActions;
2115
- selectActions << mActionSelectByExpression << mActionSelectByForm << mActionSelectAll
2115
+ selectActions << mActionSelectByForm << mActionSelectByExpression << mActionSelectAll
2116
2116
<< mActionInvertSelection ;
2117
2117
bt->addActions ( selectActions );
2118
- bt->setDefaultAction ( mActionSelectByExpression );
2118
+ bt->setDefaultAction ( mActionSelectByForm );
2119
2119
QAction* selectionAction = mAttributesToolBar ->insertWidget ( mActionDeselectAll , bt );
2120
2120
selectionAction->setObjectName ( QStringLiteral ( " ActionSelection" ) );
2121
2121
Original file line number Diff line number Diff line change 72
72
<addaction name =" mActionSelectPolygon" />
73
73
<addaction name =" mActionSelectFreehand" />
74
74
<addaction name =" mActionSelectRadius" />
75
- <addaction name =" mActionSelectByExpression" />
76
75
<addaction name =" mActionSelectByForm" />
76
+ <addaction name =" mActionSelectByExpression" />
77
77
<addaction name =" mActionDeselectAll" />
78
78
<addaction name =" mActionSelectAll" />
79
79
<addaction name =" mActionInvertSelection" />
You can’t perform that action at this time.
1 commit comments
nirvn commentedon Dec 27, 2016
Excellent. What about giving select by expression a keyboard shortcut similar select by form? Ctrl+F3?