diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-05-12 15:47:49 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-05-12 17:20:12 +0200 |
commit | 01c0e20cc5c4b2d771fea2770fbe706e949a389d (patch) | |
tree | 0c7e1866be325f1c0816f67db72b830f5f6442ba | |
parent | 539e992a3c5ef46807b0bff9ec7f17f349719ba4 (diff) | |
download | kube-01c0e20cc5c4b2d771fea2770fbe706e949a389d.tar.gz kube-01c0e20cc5c4b2d771fea2770fbe706e949a389d.zip |
"Discard" is really "Remove Account"
-rw-r--r-- | framework/qml/EditAccount.qml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/framework/qml/EditAccount.qml b/framework/qml/EditAccount.qml index d5e3379a..3f8abc8b 100644 --- a/framework/qml/EditAccount.qml +++ b/framework/qml/EditAccount.qml | |||
@@ -113,11 +113,10 @@ Item { | |||
113 | Layout.fillWidth: true | 113 | Layout.fillWidth: true |
114 | 114 | ||
115 | Kube.Button { | 115 | Kube.Button { |
116 | text: "Discard" | 116 | text: "Remove Account" |
117 | 117 | ||
118 | onClicked: { | 118 | onClicked: { |
119 | loader.item.remove() | 119 | loader.item.remove() |
120 | dialog.closeDialog() | ||
121 | } | 120 | } |
122 | } | 121 | } |
123 | 122 | ||
@@ -126,7 +125,7 @@ Item { | |||
126 | text: "Save" | 125 | text: "Save" |
127 | onClicked: { | 126 | onClicked: { |
128 | loader.item.save() | 127 | loader.item.save() |
129 | dialog.closeDialog() | 128 | //TODO Feedback that the settings have been saved (popup notification/animation?) |
130 | } | 129 | } |
131 | } | 130 | } |
132 | } | 131 | } |