Skip to content

Commit 4153ef9

Browse files
committed
add missing actionFeatureAction() to gui and sip
1 parent 0f8333d commit 4153ef9

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

python/gui/qgisinterface.sip

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -408,6 +408,7 @@ class QgisInterface : QObject
408408
virtual QAction *actionSelectFreehand() = 0;
409409
virtual QAction *actionSelectRadius() = 0;
410410
virtual QAction *actionIdentify() = 0;
411+
virtual QAction *actionFeatureAction() = 0;
411412
virtual QAction *actionMeasure() = 0;
412413
virtual QAction *actionMeasureArea() = 0;
413414
virtual QAction *actionZoomFullExtent() = 0;

src/gui/qgisinterface.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -473,6 +473,8 @@ class GUI_EXPORT QgisInterface : public QObject
473473
virtual QAction *actionSelectRadius() = 0;
474474
//! Get access to the native identify action. Call trigger() on it to set the default identify map tool.
475475
virtual QAction *actionIdentify() = 0;
476+
//! Get access to the native run action feature action. Call trigger() on it to set the default run feature action map tool.
477+
virtual QAction *actionFeatureAction() = 0;
476478
//! Get access to the native measure action. Call trigger() on it to set the default measure map tool.
477479
virtual QAction *actionMeasure() = 0;
478480
//! Get access to the native measure area action. Call trigger() on it to set the default measure area map tool.

0 commit comments

Comments
 (0)