diff options
| author | Monzero Build System <builds@monzero.org> | 2026-08-15 21:26:40 +0100 |
|---|---|---|
| committer | Monzero Build System <builds@monzero.org> | 2026-08-15 21:26:40 +0100 |
| commit | dceeb88444ce966caa1a133d2926d5f7213c87ff (patch) | |
| tree | d74c9c7d7e43c2a0d39d656c690c63050cff7f53 /components/Slider.qml | |
| parent | 81f33c7e00bf183823909a02e6d96ce11e41adce (diff) | |
| download | monzero-gui-dceeb88444ce966caa1a133d2926d5f7213c87ff.tar.gz monzero-gui-dceeb88444ce966caa1a133d2926d5f7213c87ff.tar.xz monzero-gui-dceeb88444ce966caa1a133d2926d5f7213c87ff.zip | |
Establish Monzero GUI Phase 0 baselinemonzero-gui-phase0-20260815
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() |
