diff options
-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 | } |