1
mirror of https://github.com/monero-project/monero-gui synced 2024-11-25 10:47:19 +01:00

WizardHome: display icon + language instead of change language button

Co-authored-by: rating89us <45968869+rating89us@users.noreply.github.com>
This commit is contained in:
xiphon 2020-11-04 02:07:54 +00:00
parent 04429e85e6
commit 8b9580d621

View File

@ -30,6 +30,7 @@ import QtQuick 2.9
import QtQuick.Dialogs 1.2
import QtQuick.Layouts 1.2
import QtQuick.Controls 2.0
import FontAwesome 1.0
import moneroComponents.NetworkType 1.0
import "../components" as MoneroComponents
@ -56,10 +57,44 @@ Rectangle {
Layout.alignment: Qt.AlignHCenter
spacing: 0
WizardHeader {
Layout.bottomMargin: 20
title: qsTr("Welcome to Monero") + translationManager.emptyString
subtitle: ""
RowLayout {
Layout.fillWidth: true
spacing: 10
WizardHeader {
Layout.bottomMargin: 7
Layout.fillWidth: true
title: qsTr("Welcome to Monero") + translationManager.emptyString
subtitle: ""
}
RowLayout {
Layout.bottomMargin: 8
opacity: mouseArea.containsMouse ? 1 : 0.85
spacing: 10
MoneroComponents.Label {
Layout.bottomMargin: 5
fontColor: MoneroComponents.Style.defaultFontColor
fontFamily: FontAwesome.fontFamilySolid
fontSize: 26
styleName: "Solid"
text: FontAwesome.language
}
MoneroComponents.TextPlain {
font.pixelSize: 14
text: wizard.language_language
}
MouseArea {
id: mouseArea
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
hoverEnabled: true
onClicked: appWindow.toggleLanguageView()
}
}
}
WizardMenuItem {
@ -147,15 +182,6 @@ Rectangle {
wizardController.wizardState = 'wizardModeSelection';
}
}
MoneroComponents.StandardButton {
small: true
text: qsTr("Change language") + translationManager.emptyString
onClicked: {
appWindow.toggleLanguageView();
}
}
}
MoneroComponents.CheckBox2 {