diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2020-12-20 18:04:57 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-12-20 18:04:57 -0800 |
commit | 7fc4ec1163c7235fe90efa59e195263d19c506a4 (patch) | |
tree | 0b985cc35f32c35d8b23b956b1161eb91c6c79c6 | |
parent | 4995c141c617ef8d0ffb8b89faf5c5457d3b9b11 (diff) | |
download | subsurface-7fc4ec1163c7235fe90efa59e195263d19c506a4.tar.gz |
mobile/UI: fix theming of combo boxes in dive edit
Again, not using our template combo box.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | mobile-widgets/qml/DiveDetailsEdit.qml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/mobile-widgets/qml/DiveDetailsEdit.qml b/mobile-widgets/qml/DiveDetailsEdit.qml index c4715cea3..99ae02408 100644 --- a/mobile-widgets/qml/DiveDetailsEdit.qml +++ b/mobile-widgets/qml/DiveDetailsEdit.qml @@ -264,7 +264,7 @@ Item { font.pointSize: subsurfaceTheme.smallPointSize color: subsurfaceTheme.textColor } - Controls.ComboBox { + TemplateComboBox { id: suitBox editable: true flat: true @@ -286,7 +286,7 @@ Item { font.pointSize: subsurfaceTheme.smallPointSize color: subsurfaceTheme.textColor } - Controls.ComboBox { + TemplateComboBox { id: buddyBox editable: true model: diveDetailsListView.currentItem && diveDetailsListView.currentItem.modelData !== null ? @@ -307,7 +307,7 @@ Item { font.pointSize: subsurfaceTheme.smallPointSize color: subsurfaceTheme.textColor } - Controls.ComboBox { + TemplateComboBox { id: divemasterBox editable: true model: diveDetailsListView.currentItem && diveDetailsListView.currentItem.modelData !== null ? @@ -342,7 +342,7 @@ Item { font.pointSize: subsurfaceTheme.smallPointSize color: subsurfaceTheme.textColor } - Controls.ComboBox { + TemplateComboBox { id: cylinderBox0 flat: true model: diveDetailsListView.currentItem && diveDetailsListView.currentItem.modelData !== null ? @@ -398,7 +398,7 @@ Item { font.pointSize: subsurfaceTheme.smallPointSize color: subsurfaceTheme.textColor } - Controls.ComboBox { + TemplateComboBox { visible: usedCyl[1] != null ? true : false id: cylinderBox1 flat: true @@ -461,7 +461,7 @@ Item { color: subsurfaceTheme.textColor font.pointSize: subsurfaceTheme.smallPointSize } - Controls.ComboBox { + TemplateComboBox { visible: usedCyl[2] != null ? true : false id: cylinderBox2 currentIndex: find(usedCyl[2]) @@ -524,7 +524,7 @@ Item { font.pointSize: subsurfaceTheme.smallPointSize color: subsurfaceTheme.textColor } - Controls.ComboBox { + TemplateComboBox { visible: usedCyl[3] != null ? true : false id: cylinderBox3 currentIndex: find(usedCyl[3]) @@ -588,7 +588,7 @@ Item { font.pointSize: subsurfaceTheme.smallPointSize color: subsurfaceTheme.textColor } - Controls.ComboBox { + TemplateComboBox { visible: usedCyl[4] != null ? true : false id: cylinderBox4 currentIndex: find(usedCyl[4]) |