telldus/telldus-gui/Plugins/Controllers/StateLabel.qml
2012-04-18 17:26:43 +02:00

10 lines
165 B
QML

import QtQuick 1.1
import QtDesktop 0.1
Text {
property int currentState: -1
property int state: 0
id: stateLabel;
text: ""
font.bold: state == currentState
}