mirror of
https://github.com/overte-org/overte.git
synced 2025-04-27 19:55:54 +02:00
16 lines
286 B
QML
16 lines
286 B
QML
import QtQuick 2.5
|
|
import QtQuick.Controls 1.4 as Original
|
|
|
|
Preference {
|
|
id: root
|
|
height: button.height
|
|
|
|
Component.onCompleted: button.text = preference.name;
|
|
|
|
function save() { }
|
|
|
|
Original.Button {
|
|
id: button
|
|
onClicked: preference.trigger()
|
|
}
|
|
}
|