Ubuntu Pastebin

Paste from pete-woods at Wed, 9 Dec 2015 11:26:00 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
        RowLayout {
            Layout.fillWidth: true

            CheckBox {
                checked: connection.devTypeSet
                onCheckedChanged: connection.devTypeSet = checked
            }

            Label {text: i18n.tr("Virtual device type:")}

            QQC.ComboBox {
                model: [
                    i18n.tr("TUN"),
                    i18n.tr("TAP"),
                ]
                currentIndex: connection.devType
                onCurrentIndexChanged: connection.devType = currentIndex
                enabled: connection.devTypeSet
                Layout.fillWidth: true
            }
        }
Download as text