diff options
| author | mmbyday <mmbyday@protonmail.com> | 2020-04-23 00:02:14 +0200 |
|---|---|---|
| committer | selsta <selsta@sent.at> | 2020-04-23 00:04:07 +0200 |
| commit | 3835387eea51867046c0526aaa7af8f689438fc5 (patch) | |
| tree | 9cba2c70e3b33529d2629f9b344156d62db5c03a /components/LanguageSidebar.qml | |
| parent | 585fb2810dc0d9b79255b9bd479559b36aa087d8 (diff) | |
| download | monzero-gui-3835387eea51867046c0526aaa7af8f689438fc5.tar.gz monzero-gui-3835387eea51867046c0526aaa7af8f689438fc5.tar.xz monzero-gui-3835387eea51867046c0526aaa7af8f689438fc5.zip | |
wizard: add flags to language sidebar
Diffstat (limited to 'components/LanguageSidebar.qml')
| -rw-r--r-- | components/LanguageSidebar.qml | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/components/LanguageSidebar.qml b/components/LanguageSidebar.qml index f67cde7b..49c65980 100644 --- a/components/LanguageSidebar.qml +++ b/components/LanguageSidebar.qml @@ -79,9 +79,24 @@ Drawer { width: sideBar.width height: 32 + Rectangle { + id: flagRect + height: 24 + width: 24 + anchors.left: parent.left + anchors.leftMargin: 4 + anchors.verticalCenter: parent.verticalCenter + color: "transparent" + + Image { + anchors.fill: parent + source: flag + } + } + MoneroComponents.TextPlain { anchors.left: parent.left - anchors.leftMargin: 16 + anchors.leftMargin: 30 font.bold: true font.pixelSize: 14 color: MoneroComponents.Style.defaultFontColor |
