1
0
mirror of https://github.com/QRouland/UTPass.git synced 2025-06-29 16:52:29 +00:00

Show a message if no password if found

This commit is contained in:
2019-03-13 21:32:10 +01:00
parent 17da3a862e
commit 24772bebd7
5 changed files with 22 additions and 8 deletions

View File

@ -5,12 +5,14 @@ Component {
Rectangle {
width: page.width
height: units.gu(5)
Text {
text: fileBaseName
anchors.left: parent.left
anchors.leftMargin: units.gu(1)
anchors.verticalCenter: parent.verticalCenter
}
Icon {
anchors.right: parent.right
anchors.verticalCenter: parent.verticalCenter
@ -19,13 +21,13 @@ Component {
name: fileIsDir ? "go-next" : "lock"
color: UbuntuColors.orange
}
MouseArea
{
MouseArea {
anchors.fill: parent
onClicked: { if (fileIsDir){ folderModel.folder = folderModel.folder + "/" + fileName ; backAction.visible = true;} }
}
CustomBorder
{
CustomBorder {
commonBorder: false
lBorderwidth: 0
rBorderwidth: 0