Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'resources/qml/TableView.qml')
-rw-r--r--resources/qml/TableView.qml5
1 files changed, 2 insertions, 3 deletions
diff --git a/resources/qml/TableView.qml b/resources/qml/TableView.qml
index 1b084be5a0..db495c3dc2 100644
--- a/resources/qml/TableView.qml
+++ b/resources/qml/TableView.qml
@@ -6,7 +6,7 @@ import QtQuick.Controls 1.4 as OldControls // TableView doesn't exist in the QtQ
import QtQuick.Controls 2.3
import QtQuick.Controls.Styles 1.4
-import UM 1.2 as UM
+import UM 1.5 as UM
OldControls.TableView
@@ -15,7 +15,7 @@ OldControls.TableView
{
height: tableCellLabel.implicitHeight
- Label
+ UM.Label
{
id: tableCellLabel
color: styleData.selected ? UM.Theme.getColor("primary_button_text") : UM.Theme.getColor("text")
@@ -23,7 +23,6 @@ OldControls.TableView
text: styleData.value
anchors.fill: parent
anchors.leftMargin: 10 * screenScaleFactor
- verticalAlignment: Text.AlignVCenter
}
}