diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2020-03-20 12:20:43 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-03-21 13:27:00 -0700 |
commit | 98ef01b2e4c21f15ddf92059fa7fdd77acd883ec (patch) | |
tree | 48146f616ae4eb1b5a2388623483a0a7b1f85c91 /mobile-widgets/qml/TripDetails.qml | |
parent | f4f15039ac780903102eb101918329c6a488b9c3 (diff) | |
download | subsurface-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/TripDetails.qml')
-rw-r--r-- | mobile-widgets/qml/TripDetails.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile-widgets/qml/TripDetails.qml b/mobile-widgets/qml/TripDetails.qml index eca51653d..bbf95cf23 100644 --- a/mobile-widgets/qml/TripDetails.qml +++ b/mobile-widgets/qml/TripDetails.qml @@ -49,7 +49,7 @@ Kirigami.Page { property QtObject saveAction: Kirigami.Action { icon { - name: subsurfaceTheme.iconStyle + "/document-save.svg" + name: ":/icons/document-save.svg" color: enabled ? subsurfaceTheme.primaryColor : subsurfaceTheme.backgroundColor } text: enabled ? qsTr("Save edits") : "" |