mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-24 19:31:16 -07:00
Fix SettingUnknown setting handler to display correctly
This commit is contained in:
parent
d761409bf2
commit
fa9f9b41ab
1 changed files with 7 additions and 1 deletions
|
|
@ -4,10 +4,16 @@
|
||||||
import QtQuick 2.1
|
import QtQuick 2.1
|
||||||
import QtQuick.Controls 1.1
|
import QtQuick.Controls 1.1
|
||||||
|
|
||||||
|
import UM 1.2 as UM
|
||||||
|
|
||||||
SettingItem
|
SettingItem
|
||||||
{
|
{
|
||||||
Label
|
contents: Label
|
||||||
{
|
{
|
||||||
|
anchors.fill: parent
|
||||||
text: value + " " + unit;
|
text: value + " " + unit;
|
||||||
|
color: UM.Theme.getColor("setting_control_text")
|
||||||
|
|
||||||
|
verticalAlignment: Qt.AlignVCenter
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue