diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2020-12-30 18:09:39 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2021-01-01 11:35:39 -0800 |
commit | 4ca40bc15262193cec29f1aea02ac6964634b88c (patch) | |
tree | 342580d7a4d44c6567d1862c977e3f9ffe6798cd /mobile-widgets/qml/DownloadedDiveDelegate.qml | |
parent | 765c4f9704e2b606a94fedff3e3fdf7deeefa2f6 (diff) | |
download | subsurface-4ca40bc15262193cec29f1aea02ac6964634b88c.tar.gz |
mobile/UI: consolidate to a single check box
It was very odd that we had two slightly different styled check boxes.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qml/DownloadedDiveDelegate.qml')
-rw-r--r-- | mobile-widgets/qml/DownloadedDiveDelegate.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile-widgets/qml/DownloadedDiveDelegate.qml b/mobile-widgets/qml/DownloadedDiveDelegate.qml index 6a3136975..6408d9bd2 100644 --- a/mobile-widgets/qml/DownloadedDiveDelegate.qml +++ b/mobile-widgets/qml/DownloadedDiveDelegate.qml @@ -34,7 +34,7 @@ Kirigami.AbstractListItem { NumberAnimation { property: "opacity"; from: 0; to: 1.0; duration: 400 } NumberAnimation { property: "scale"; from: 0; to: 1.0; duration: 400 } } - SsrfCheckBox { + TemplateCheckBox { id: diveIsSelected checked: innerListItem.selected; width: childrenRect.width + 4 * Kirigami.Units.smallSpacing; |