mirror of
https://github.com/QRouland/UTPass.git
synced 2026-01-08 10:46:58 +00:00
Foramtting
This commit is contained in:
@@ -1,18 +1,16 @@
|
||||
import Git 1.0
|
||||
import Lomiri.Components 1.3
|
||||
import Pass 1.0
|
||||
import Utils 1.0
|
||||
import QtQuick 2.4
|
||||
import Utils 1.0
|
||||
|
||||
Column {
|
||||
|
||||
|
||||
property alias importSshPrivKeyButton : repoImportPrivKeyButton
|
||||
property alias importSshPubKeyButton : repoImportPubKeyButton
|
||||
property alias deleteSshPrivKeyButton : repoDeletePrivKeyButton
|
||||
property alias deleteSshPubKeyButton : repoDeletePubKeyButton
|
||||
property bool __sshPrivKeyAvailable : false
|
||||
property bool __sshPubKeyAvailable : false
|
||||
property alias importSshPrivKeyButton: repoImportPrivKeyButton
|
||||
property alias importSshPubKeyButton: repoImportPubKeyButton
|
||||
property alias deleteSshPrivKeyButton: repoDeletePrivKeyButton
|
||||
property alias deleteSshPubKeyButton: repoDeletePubKeyButton
|
||||
property bool __sshPrivKeyAvailable: false
|
||||
property bool __sshPubKeyAvailable: false
|
||||
|
||||
signal repoUrlChanged(string url)
|
||||
|
||||
@@ -28,7 +26,6 @@ Column {
|
||||
Component.onCompleted: {
|
||||
update();
|
||||
}
|
||||
|
||||
anchors.top: parent.fill
|
||||
spacing: units.gu(1)
|
||||
|
||||
@@ -108,7 +105,6 @@ Column {
|
||||
visible: !__sshPrivKeyAvailable
|
||||
}
|
||||
|
||||
|
||||
Text {
|
||||
id: repoPassphraseLabel
|
||||
|
||||
|
||||
@@ -10,15 +10,15 @@ Page {
|
||||
id: importKeyFilePage
|
||||
|
||||
property var activeTransfer
|
||||
property alias contentPicker : contentPicker
|
||||
|
||||
property string headerTitle : i18n.tr("Import succeeded !")
|
||||
property string dialogErrorTxt : i18n.tr("Import failed !")
|
||||
property string dialogErrorDescriptionTxt : null
|
||||
property string dialogSuccessTxt : i18n.tr("File Imported")
|
||||
property alias contentPicker: contentPicker
|
||||
property string headerTitle: i18n.tr("Import succeeded !")
|
||||
property string dialogErrorTxt: i18n.tr("Import failed !")
|
||||
property string dialogErrorDescriptionTxt: null
|
||||
property string dialogSuccessTxt: i18n.tr("File Imported")
|
||||
|
||||
ContentPeerPicker {
|
||||
id: contentPicker
|
||||
|
||||
anchors.top: importKeyHeader.bottom
|
||||
anchors.bottom: parent.bottom
|
||||
anchors.topMargin: importKeyFilePage.header.height
|
||||
@@ -39,7 +39,6 @@ Page {
|
||||
activeTransfer: importKeyFilePage.activeTransfer
|
||||
}
|
||||
|
||||
|
||||
header: StackHeader {
|
||||
id: importKeyHeader
|
||||
|
||||
|
||||
Reference in New Issue
Block a user