diff options
author | Loren Burkholder <computersemiexpert@outlook.com> | 2023-06-30 08:43:21 -0400 |
---|---|---|
committer | Loren Burkholder <computersemiexpert@outlook.com> | 2023-07-06 08:36:00 -0400 |
commit | 8c17c4f6481ca58f7dd4330310c7d7d67a40a5e7 (patch) | |
tree | 2333bccc297362078692371d7e9787d6033ec692 /resources | |
parent | make lint (diff) | |
download | nheko-8c17c4f6481ca58f7dd4330310c7d7d67a40a5e7.tar.xz |
Remove duplicate UIA error display
Diffstat (limited to 'resources')
-rw-r--r-- | resources/qml/Root.qml | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/resources/qml/Root.qml b/resources/qml/Root.qml index 1fd0c610..fb0c6036 100644 --- a/resources/qml/Root.qml +++ b/resources/qml/Root.qml @@ -348,11 +348,6 @@ Pane { } } Platform.MessageDialog { - id: uiaErrorDialog - - buttons: Platform.MessageDialog.Ok - } - Platform.MessageDialog { id: uiaConfirmationLinkDialog buttons: Platform.MessageDialog.Ok @@ -368,10 +363,6 @@ Pane { function onEmail() { uiaEmailPrompt.show(); } - function onError(msg) { - uiaErrorDialog.text = msg; - uiaErrorDialog.open(); - } function onPassword() { console.log("UIA: password needed"); uiaPassPrompt.show(); |