mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
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>
This commit is contained in:
parent
4995c141c6
commit
7fc4ec1163
1 changed files with 8 additions and 8 deletions
|
@ -264,7 +264,7 @@ Item {
|
||||||
font.pointSize: subsurfaceTheme.smallPointSize
|
font.pointSize: subsurfaceTheme.smallPointSize
|
||||||
color: subsurfaceTheme.textColor
|
color: subsurfaceTheme.textColor
|
||||||
}
|
}
|
||||||
Controls.ComboBox {
|
TemplateComboBox {
|
||||||
id: suitBox
|
id: suitBox
|
||||||
editable: true
|
editable: true
|
||||||
flat: true
|
flat: true
|
||||||
|
@ -286,7 +286,7 @@ Item {
|
||||||
font.pointSize: subsurfaceTheme.smallPointSize
|
font.pointSize: subsurfaceTheme.smallPointSize
|
||||||
color: subsurfaceTheme.textColor
|
color: subsurfaceTheme.textColor
|
||||||
}
|
}
|
||||||
Controls.ComboBox {
|
TemplateComboBox {
|
||||||
id: buddyBox
|
id: buddyBox
|
||||||
editable: true
|
editable: true
|
||||||
model: diveDetailsListView.currentItem && diveDetailsListView.currentItem.modelData !== null ?
|
model: diveDetailsListView.currentItem && diveDetailsListView.currentItem.modelData !== null ?
|
||||||
|
@ -307,7 +307,7 @@ Item {
|
||||||
font.pointSize: subsurfaceTheme.smallPointSize
|
font.pointSize: subsurfaceTheme.smallPointSize
|
||||||
color: subsurfaceTheme.textColor
|
color: subsurfaceTheme.textColor
|
||||||
}
|
}
|
||||||
Controls.ComboBox {
|
TemplateComboBox {
|
||||||
id: divemasterBox
|
id: divemasterBox
|
||||||
editable: true
|
editable: true
|
||||||
model: diveDetailsListView.currentItem && diveDetailsListView.currentItem.modelData !== null ?
|
model: diveDetailsListView.currentItem && diveDetailsListView.currentItem.modelData !== null ?
|
||||||
|
@ -342,7 +342,7 @@ Item {
|
||||||
font.pointSize: subsurfaceTheme.smallPointSize
|
font.pointSize: subsurfaceTheme.smallPointSize
|
||||||
color: subsurfaceTheme.textColor
|
color: subsurfaceTheme.textColor
|
||||||
}
|
}
|
||||||
Controls.ComboBox {
|
TemplateComboBox {
|
||||||
id: cylinderBox0
|
id: cylinderBox0
|
||||||
flat: true
|
flat: true
|
||||||
model: diveDetailsListView.currentItem && diveDetailsListView.currentItem.modelData !== null ?
|
model: diveDetailsListView.currentItem && diveDetailsListView.currentItem.modelData !== null ?
|
||||||
|
@ -398,7 +398,7 @@ Item {
|
||||||
font.pointSize: subsurfaceTheme.smallPointSize
|
font.pointSize: subsurfaceTheme.smallPointSize
|
||||||
color: subsurfaceTheme.textColor
|
color: subsurfaceTheme.textColor
|
||||||
}
|
}
|
||||||
Controls.ComboBox {
|
TemplateComboBox {
|
||||||
visible: usedCyl[1] != null ? true : false
|
visible: usedCyl[1] != null ? true : false
|
||||||
id: cylinderBox1
|
id: cylinderBox1
|
||||||
flat: true
|
flat: true
|
||||||
|
@ -461,7 +461,7 @@ Item {
|
||||||
color: subsurfaceTheme.textColor
|
color: subsurfaceTheme.textColor
|
||||||
font.pointSize: subsurfaceTheme.smallPointSize
|
font.pointSize: subsurfaceTheme.smallPointSize
|
||||||
}
|
}
|
||||||
Controls.ComboBox {
|
TemplateComboBox {
|
||||||
visible: usedCyl[2] != null ? true : false
|
visible: usedCyl[2] != null ? true : false
|
||||||
id: cylinderBox2
|
id: cylinderBox2
|
||||||
currentIndex: find(usedCyl[2])
|
currentIndex: find(usedCyl[2])
|
||||||
|
@ -524,7 +524,7 @@ Item {
|
||||||
font.pointSize: subsurfaceTheme.smallPointSize
|
font.pointSize: subsurfaceTheme.smallPointSize
|
||||||
color: subsurfaceTheme.textColor
|
color: subsurfaceTheme.textColor
|
||||||
}
|
}
|
||||||
Controls.ComboBox {
|
TemplateComboBox {
|
||||||
visible: usedCyl[3] != null ? true : false
|
visible: usedCyl[3] != null ? true : false
|
||||||
id: cylinderBox3
|
id: cylinderBox3
|
||||||
currentIndex: find(usedCyl[3])
|
currentIndex: find(usedCyl[3])
|
||||||
|
@ -588,7 +588,7 @@ Item {
|
||||||
font.pointSize: subsurfaceTheme.smallPointSize
|
font.pointSize: subsurfaceTheme.smallPointSize
|
||||||
color: subsurfaceTheme.textColor
|
color: subsurfaceTheme.textColor
|
||||||
}
|
}
|
||||||
Controls.ComboBox {
|
TemplateComboBox {
|
||||||
visible: usedCyl[4] != null ? true : false
|
visible: usedCyl[4] != null ? true : false
|
||||||
id: cylinderBox4
|
id: cylinderBox4
|
||||||
currentIndex: find(usedCyl[4])
|
currentIndex: find(usedCyl[4])
|
||||||
|
|
Loading…
Add table
Reference in a new issue