aboutsummaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2019-12-19 19:19:32 -0500
committerluigi1111 <luigi1111w@gmail.com>2019-12-19 19:19:32 -0500
commitabd98b95f6e7d98544a0c1becc5aa719abfaeadb (patch)
treecb096bcdfba99dbb195adba7436100a9483b658c /components
parent78f8cb259532de5626e90f1e1992bfe6ce0ef089 (diff)
parent38d412a3fa3bcf7b200bfc88b9a00a22e3b6601d (diff)
downloadmonzero-gui-abd98b95f6e7d98544a0c1becc5aa719abfaeadb.tar.gz
monzero-gui-abd98b95f6e7d98544a0c1becc5aa719abfaeadb.tar.xz
monzero-gui-abd98b95f6e7d98544a0c1becc5aa719abfaeadb.zip
Merge pull request #2578
38d412a components: handle enter and return (selsta)
Diffstat (limited to 'components')
-rw-r--r--components/InlineButton.qml2
-rw-r--r--components/InputDialog.qml2
-rw-r--r--components/PasswordDialog.qml3
-rw-r--r--components/StandardButton.qml2
4 files changed, 9 insertions, 0 deletions
diff --git a/components/InlineButton.qml b/components/InlineButton.qml
index 45cf841c..402dade2 100644
--- a/components/InlineButton.qml
+++ b/components/InlineButton.qml
@@ -125,6 +125,8 @@ Item {
source: rect
}
+ Keys.enabled: inlineButton.visible
Keys.onSpacePressed: doClick()
+ Keys.onEnterPressed: Keys.onReturnPressed(event)
Keys.onReturnPressed: doClick()
}
diff --git a/components/InputDialog.qml b/components/InputDialog.qml
index 2a69e79f..0bd2c5f4 100644
--- a/components/InputDialog.qml
+++ b/components/InputDialog.qml
@@ -110,6 +110,8 @@ Item {
color: MoneroComponents.Style.blackTheme ? "black" : "#A9FFFFFF"
}
+ Keys.enabled: root.visible
+ Keys.onEnterPressed: Keys.onReturnPressed(event)
Keys.onReturnPressed: {
root.close()
root.accepted()
diff --git a/components/PasswordDialog.qml b/components/PasswordDialog.qml
index 18bccdfe..587d484e 100644
--- a/components/PasswordDialog.qml
+++ b/components/PasswordDialog.qml
@@ -254,6 +254,7 @@ Item {
}
Keys.enabled: root.visible
+ Keys.onEnterPressed: Keys.onReturnPressed(event)
Keys.onReturnPressed: {
root.close()
if (passwordDialogMode) {
@@ -352,6 +353,8 @@ Item {
}
}
+ Keys.enabled: root.visible
+ Keys.onEnterPressed: Keys.onReturnPressed(event)
Keys.onReturnPressed: {
if (passwordInput1.text === passwordInput2.text) {
root.close()
diff --git a/components/StandardButton.qml b/components/StandardButton.qml
index 28572245..77cd2dad 100644
--- a/components/StandardButton.qml
+++ b/components/StandardButton.qml
@@ -146,6 +146,8 @@ Item {
cursorShape: Qt.PointingHandCursor
}
+ Keys.enabled: button.visible
Keys.onSpacePressed: doClick()
+ Keys.onEnterPressed: Keys.onReturnPressed(event)
Keys.onReturnPressed: doClick()
}