diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2017-01-30 17:11:30 -0600 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2017-01-30 17:11:30 -0600 |
| commit | 43d5bd3e2db54d0475a3a59e5a8859382aca732c (patch) | |
| tree | 8ece73e825dad43b42b6814d94e60814cd7c9520 /components | |
| parent | be564921d812667763b9e83cac9ca2dc814b0a01 (diff) | |
| parent | 04ff16ddb288d6b8ae6c7f4d4f74097bd700124b (diff) | |
| download | monzero-gui-43d5bd3e2db54d0475a3a59e5a8859382aca732c.tar.gz monzero-gui-43d5bd3e2db54d0475a3a59e5a8859382aca732c.tar.xz monzero-gui-43d5bd3e2db54d0475a3a59e5a8859382aca732c.zip | |
Merge pull request #437
Restore wallet from keys (Jaqueeee)
Diffstat (limited to 'components')
| -rw-r--r-- | components/DaemonConsole.qml | 1 | ||||
| -rw-r--r-- | components/LineEdit.qml | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/components/DaemonConsole.qml b/components/DaemonConsole.qml index 8d4f90b6..ba07f523 100644 --- a/components/DaemonConsole.qml +++ b/components/DaemonConsole.qml @@ -106,7 +106,6 @@ Window { releasedColor: "#FF6C3C" pressedColor: "#FF4304" text: qsTr("Close") - KeyNavigation.tab: cancelButton onClicked: { root.close() root.accepted() diff --git a/components/LineEdit.qml b/components/LineEdit.qml index 96954344..1d83e617 100644 --- a/components/LineEdit.qml +++ b/components/LineEdit.qml @@ -39,6 +39,7 @@ Item { property bool error: false signal editingFinished() signal accepted(); + signal textUpdated(); height: 37 @@ -71,5 +72,6 @@ Item { font.pixelSize: parent.fontSize onEditingFinished: item.editingFinished() onAccepted: item.accepted(); + onTextChanged: item.textUpdated() } } |
