blob: 9f418a8ce1b738fe77c59f4047adfd43434fa3e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import QtQuick 2.9
import QtQuick.Controls 1.4
MenuItem
{
property int tool: 0
checkable : true
checked: (window.tool === tool)
onTriggered:
{
if ( tool )
window.tool = tool
}
}
|