aboutsummaryrefslogtreecommitdiffstats
path: root/mobile-widgets/qml/DiveDetails.qml
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2020-03-20 12:20:43 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2020-03-21 13:27:00 -0700
commit98ef01b2e4c21f15ddf92059fa7fdd77acd883ec (patch)
tree48146f616ae4eb1b5a2388623483a0a7b1f85c91 /mobile-widgets/qml/DiveDetails.qml
parentf4f15039ac780903102eb101918329c6a488b9c3 (diff)
downloadsubsurface-98ef01b2e4c21f15ddf92059fa7fdd77acd883ec.tar.gz
mobile UI: stop the use of dark icon theme
This was used very inconsistently and had more bugs than positive impact. See #2686 Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qml/DiveDetails.qml')
-rw-r--r--mobile-widgets/qml/DiveDetails.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/mobile-widgets/qml/DiveDetails.qml b/mobile-widgets/qml/DiveDetails.qml
index 9a185789c..57ef6c884 100644
--- a/mobile-widgets/qml/DiveDetails.qml
+++ b/mobile-widgets/qml/DiveDetails.qml
@@ -220,8 +220,8 @@ Kirigami.Page {
actions.main: Kirigami.Action {
icon {
- name: state !== "view" ? subsurfaceTheme.iconStyle + "/document-save.svg" :
- subsurfaceTheme.iconStyle + "/document-edit.svg"
+ name: state !== "view" ? ":/icons/document-save.svg" :
+ ":/icons/document-edit.svg"
color: subsurfaceTheme.primaryColor
}
text: state !== "view" ? qsTr("Save edits") : qsTr("Edit dive")