tAdd scroll decorator to password lists - sailfish-safe - Sailfish frontend for safe(1)
HTML git clone git://git.z3bra.org/sailfish-safe.git
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit b68489e813410b19b4a5f766be76d92ade4d449f
DIR parent 6e1bec6bceed73deff7ee3f482ee54c32d549422
HTML Author: Daniel Vrátil <dvratil@kde.org>
Date: Thu, 14 Feb 2019 21:33:16 +0100
Add scroll decorator to password lists
Diffstat:
M qml/pages/PasswordListPage.qml | 4 ++++
M qml/pages/SearchPage.qml | 4 ++++
2 files changed, 8 insertions(+), 0 deletions(-)
---
DIR diff --git a/qml/pages/PasswordListPage.qml b/qml/pages/PasswordListPage.qml
t@@ -59,5 +59,9 @@ Page {
}
}
}
+
+ VerticalScrollDecorator {
+ flickable: listView
+ }
}
}
DIR diff --git a/qml/pages/SearchPage.qml b/qml/pages/SearchPage.qml
t@@ -39,5 +39,9 @@ Page {
delegate: PasswordDelegate {
modelData: model
}
+
+ VerticalScrollDecorator{
+ flickable: listView
+ }
}
}