diff options
Diffstat (limited to 'components/Slider.qml')
| -rw-r--r-- | components/Slider.qml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/components/Slider.qml b/components/Slider.qml index df3b3cb3..f44d124f 100644 --- a/components/Slider.qml +++ b/components/Slider.qml @@ -2,7 +2,7 @@ import QtQuick 2.9 import QtQuick.Controls 2.0 as QtQuickControls import QtQuick.Layouts 1.1 -import "../components" as MoneroComponents +import "../components" as MonzeroComponents ColumnLayout { property alias from: slider.from @@ -16,11 +16,11 @@ ColumnLayout { spacing: 0 - MoneroComponents.TextPlain { + MonzeroComponents.TextPlain { id: label - color: MoneroComponents.Style.defaultFontColor + color: MonzeroComponents.Style.defaultFontColor font.pixelSize: 14 - font.family: MoneroComponents.Style.fontRegular.name + font.family: MonzeroComponents.Style.fontRegular.name } QtQuickControls.Slider { @@ -36,12 +36,12 @@ ColumnLayout { width: parent.availableWidth height: implicitHeight radius: 2 - color: MoneroComponents.Style.progressBarBackgroundColor + color: MonzeroComponents.Style.progressBarBackgroundColor Rectangle { width: parent.visualPosition * parent.width height: parent.height - color: MoneroComponents.Style.green + color: MonzeroComponents.Style.green radius: 2 } } @@ -53,7 +53,7 @@ ColumnLayout { implicitHeight: 18 radius: 8 color: parent.pressed ? "#f0f0f0" : "#f6f6f6" - border.color: MoneroComponents.Style.grey + border.color: MonzeroComponents.Style.grey } onMoved: parent.moved() |
