1
0
mirror of https://github.com/QRouland/UTPass.git synced 2025-06-24 14:35:40 +00:00

Initial git clone feature

This commit is contained in:
2025-01-10 13:48:38 +01:00
parent d33932be6d
commit 5e5a092da1
22 changed files with 334 additions and 91 deletions

View File

@ -3,7 +3,7 @@ import Lomiri.Components 1.3
import Lomiri.Components.Popups 1.3
Dialog {
id: dialogSuccess
id: dialogError
property string textError
@ -12,11 +12,11 @@ Dialog {
title: i18n.tr("Error !")
text: textError
Button {
text: i18n.tr("OK")
text: i18n.tr("Close")
color: LomiriColors.red
onClicked: function () {
dialogClosed()
PopupUtils.close(dialogSuccess)
PopupUtils.close(dialogError)
}
}
}