summaryrefslogtreecommitdiffstats
path: root/src/settingsui/timedate/CustomComboBox.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/settingsui/timedate/CustomComboBox.qml')
-rw-r--r--src/settingsui/timedate/CustomComboBox.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/settingsui/timedate/CustomComboBox.qml b/src/settingsui/timedate/CustomComboBox.qml
index e7e1da4..3c8e752 100644
--- a/src/settingsui/timedate/CustomComboBox.qml
+++ b/src/settingsui/timedate/CustomComboBox.qml
@@ -32,6 +32,7 @@ import QtGraphicalEffects 1.0
ComboBox {
id: comboBox
+ property int itemsVisible: 5
indicator: Image {
id: indicatorImage
height: comboBox.height * 0.4
@@ -69,13 +70,12 @@ ComboBox {
popup: Popup {
y: comboBox.height -1
width: comboBox.width
- implicitHeight: contentItem.implicitHeight
+ height: comboBox.height * comboBox.itemsVisible
padding: 1
contentItem: ListView {
id: listView
clip: true
- implicitHeight: root.height - (comboBox.y + comboBox.height)
model: comboBox.popup.visible ? comboBox.delegateModel : null
currentIndex: comboBox.currentIndex
onCurrentIndexChanged: positionViewAtIndex(listView.currentIndex, ListView.beginning)