diff --git a/src/qml/Mode.qml b/src/qml/Mode.qml index 5f54507..6688a88 100644 --- a/src/qml/Mode.qml +++ b/src/qml/Mode.qml @@ -1,19 +1,20 @@ import org.kde.kirigami 2.0 Action { id: modeAction property string mimes: null property string name: "" property string modeInfo: "" property string nameFilter: "" readonly property Action adoptAction: Action { + text: modeAction.text iconName: modeAction.iconName tooltip: modeAction.tooltip onTriggered: { visor.state = modeAction.iconName } } default property var things: [] }