Import/export keys improvements

This commit is contained in:
miruka
2019-11-23 11:14:14 -04:00
parent 1d3ca08957
commit 2b288bdfc6
4 changed files with 12 additions and 59 deletions

View File

@@ -30,7 +30,7 @@ HPage {
Repeater {
id: repeater
model: ["Profile.qml", "Encryption.qml"]
model: ["Profile.qml", "ImportExportKeys.qml"]
Rectangle {
color: ready ? theme.controls.box.background : "transparent"

View File

@@ -1,23 +0,0 @@
import QtQuick 2.12
import "../../Base"
HLoader {
id: encryptionUI
source:
accountInfo.import_error[0] ? "ImportError.qml" :
accountInfo.total_keys_to_import ? "ImportingKeys.qml" :
"ImportExportKeys.qml"
onSourceChanged: animation.running = true
SequentialAnimation {
id: animation
HNumberAnimation {
target: encryptionUI; property: "scale"; to: 0;
}
HNumberAnimation {
target: encryptionUI; property: "scale"; to: 1; overshoot: 3;
}
}
}