mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-29 20:42:56 +02:00
19 lines
324 B
QML
19 lines
324 B
QML
import QtQuick 2.5
|
|
import QtQuick.Controls 1.4 as Original
|
|
|
|
import "."
|
|
import "../../../dialogs"
|
|
|
|
Preference {
|
|
id: root
|
|
height: button.height
|
|
|
|
Component.onCompleted: button.text = preference.name;
|
|
|
|
function save() { }
|
|
|
|
Original.Button {
|
|
id: button
|
|
onClicked: preference.trigger()
|
|
}
|
|
}
|