Skip to content

Commit

Permalink
Merge pull request #1864 from KomodoPlatform/fix_camouflage_pw_modal
Browse files Browse the repository at this point in the history
Text did not fit in camouflage password modal
  • Loading branch information
smk762 authored Jul 12, 2022
2 parents 6fffea7 + f3c4219 commit 19cdd5e
Showing 1 changed file with 27 additions and 19 deletions.
46 changes: 27 additions & 19 deletions atomic_defi_design/Dex/Settings/CamouflagePasswordModal.qml
Original file line number Diff line number Diff line change
Expand Up @@ -6,50 +6,55 @@ import "../Components"
import "../Constants"
import App 1.0

MultipageModal {
MultipageModal
{
id: root

width: 800

onClosed: {
input_password_suffix.reset()
}
onClosed: input_password_suffix.reset()

MultipageModalContent {
MultipageModalContent
{
titleText: qsTr("Setup Camouflage Password")

FloatingBackground {
FloatingBackground
{
id: warning_bg
Layout.alignment: Qt.AlignHCenter
Layout.bottomMargin: 10

width: parent.width - 5
height: warning_texts.height + 20

Column {
Column
{
id: warning_texts
anchors.centerIn: parent
width: parent.width
spacing: 10

DefaultText {
DefaultText
{
width: parent.width - 40
horizontalAlignment: Text.AlignHCenter
anchors.horizontalCenter: parent.horizontalCenter

text_value: qsTr("Camouflage Password is a secret password for emergency situations.")
font: DexTypo.head6
font: DexTypo.subtitle2
}

DefaultText {
DefaultText
{
width: parent.width - 40
horizontalAlignment: Text.AlignHCenter
anchors.horizontalCenter: parent.horizontalCenter
font: DexTypo.subtitle2
text_value: qsTr("Using it to login will display your balance lower than it actually is.")
}

DefaultText {
DefaultText
{
width: parent.width - 40
horizontalAlignment: Text.AlignHCenter
anchors.horizontalCenter: parent.horizontalCenter
Expand All @@ -59,7 +64,8 @@ MultipageModal {
}
}

PasswordForm {
PasswordForm
{
id: input_password_suffix
Layout.fillWidth: true
field_title: qsTr("Password suffix")
Expand All @@ -70,24 +76,26 @@ MultipageModal {
}

// Buttons
footer: [
DexAppButton {
footer:
[
DexAppButton
{
text: qsTr("Cancel")
leftPadding: 40
rightPadding: 40
radius: 20
onClicked: root.close()
},
Item {
Layout.fillWidth: true
},
DexAppOutlineButton {
Item { Layout.fillWidth: true },
DexAppOutlineButton
{
text: qsTr("Save")
leftPadding: 40
rightPadding: 40
radius: 20
enabled: input_password_suffix.isValid()
onClicked: {
onClicked:
{
API.app.wallet_mgr.set_emergency_password(input_password_suffix.field.text)
root.close()
}
Expand Down

0 comments on commit 19cdd5e

Please sign in to comment.