1
0
mirror of https://github.com/QRouland/UTPass.git synced 2025-02-24 04:14:55 +00:00

Fix loading password before Pass plugin init

This commit is contained in:
Quentin Rouland 2023-06-19 14:58:09 -04:00
parent cec4e7dabc
commit c6d7a025ff

View File

@ -19,6 +19,7 @@ MainView {
function initPass(rootView) {
Pass.init(rootView)
pageStack.push(Qt.resolvedUrl("pages/PasswordList.qml"));
}
function callPassphraseDialog(useridHint, description, previousWasBad) {
@ -43,8 +44,6 @@ MainView {
id: pageStack
anchors.fill: parent
Component.onCompleted: {
pageStack.push(Qt.resolvedUrl("pages/PasswordList.qml"))
}
Component.onCompleted: {}
}
}