mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-09 19:32:03 +02:00
sign: use radiobuttons to change modes
This commit is contained in:
parent
e81cb7e640
commit
d37de31b35
@ -1,4 +1,4 @@
|
|||||||
// Copyright (c) 2014-2018, The Monero Project
|
// Copyright (c) 2014-2019, The Monero Project
|
||||||
//
|
//
|
||||||
// All rights reserved.
|
// All rights reserved.
|
||||||
//
|
//
|
||||||
@ -126,25 +126,31 @@ Rectangle {
|
|||||||
color: MoneroComponents.Style.defaultFontColor
|
color: MoneroComponents.Style.defaultFontColor
|
||||||
}
|
}
|
||||||
|
|
||||||
RowLayout {
|
ColumnLayout {
|
||||||
id: modeButtonsRow
|
id: modeButtonsColumn
|
||||||
Layout.topMargin: 10
|
Layout.topMargin: 10
|
||||||
|
|
||||||
MoneroComponents.StandardButton {
|
MoneroComponents.RadioButton {
|
||||||
id: handleMessageButton
|
id: handleMessageButton
|
||||||
text: qsTr("Message") + translationManager.emptyString
|
text: qsTr("Message") + translationManager.emptyString
|
||||||
enabled: fileMode
|
fontSize: 16
|
||||||
|
checked: true
|
||||||
onClicked: {
|
onClicked: {
|
||||||
|
checked = true;
|
||||||
|
handleFileButton.checked = false;
|
||||||
messageMode = true;
|
messageMode = true;
|
||||||
fileMode = false;
|
fileMode = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
MoneroComponents.StandardButton {
|
MoneroComponents.RadioButton {
|
||||||
id: handleFileButton
|
id: handleFileButton
|
||||||
text: qsTr("File") + translationManager.emptyString
|
text: qsTr("File") + translationManager.emptyString
|
||||||
enabled: messageMode
|
fontSize: 16
|
||||||
|
checked: false
|
||||||
onClicked: {
|
onClicked: {
|
||||||
|
checked = true;
|
||||||
|
handleMessageButton.checked = false;
|
||||||
fileMode = true;
|
fileMode = true;
|
||||||
messageMode = false;
|
messageMode = false;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user