mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2025-01-06 02:37:21 +03:00
Update no QR code found dialog
This commit is contained in:
parent
1d33a45927
commit
eaa54d96d0
@ -148,12 +148,8 @@ DefaultDialog {
|
||||
}
|
||||
}
|
||||
|
||||
MessageDialog {
|
||||
NoQrDialog {
|
||||
id: noQr
|
||||
icon: StandardIcon.Warning
|
||||
title: qsTr("No QR code found")
|
||||
text: qsTr("Could not find a QR code.")
|
||||
standardButtons: StandardButton.Ok
|
||||
}
|
||||
|
||||
MessageDialog {
|
||||
|
@ -90,12 +90,8 @@ DefaultDialog {
|
||||
}
|
||||
}
|
||||
|
||||
MessageDialog {
|
||||
NoQrDialog {
|
||||
id: noQr
|
||||
icon: StandardIcon.Warning
|
||||
title: qsTr("No QR code found")
|
||||
text: qsTr("Could not find a QR code.")
|
||||
standardButtons: StandardButton.Ok
|
||||
}
|
||||
|
||||
MessageDialog {
|
||||
|
10
qml/NoQrDialog.qml
Normal file
10
qml/NoQrDialog.qml
Normal file
@ -0,0 +1,10 @@
|
||||
import QtQuick 2.5
|
||||
import QtQuick.Dialogs 1.2
|
||||
|
||||
MessageDialog {
|
||||
id: noQr
|
||||
icon: StandardIcon.Warning
|
||||
title: qsTr("No QR code found")
|
||||
text: qsTr("Could not find a QR code. Make sure the QR code is fully visible on the screen.")
|
||||
standardButtons: StandardButton.Ok
|
||||
}
|
Loading…
Reference in New Issue
Block a user