Files
pallectrum/electrum/gui/qml/components/controls/ElComboBox.qml
Sander van Grieken c90504986c qml: use custom combobox so we have more control over cropping and styling
enable lightning routing choice combobox
2022-07-22 14:08:00 +02:00

15 lines
483 B
QML

import QtQuick.Controls 2.0
ComboBox {
id: cb
// make combobox implicit width a multiple of 32, so it aligns with others
implicitWidth: Math.ceil(contentItem.implicitWidth/32)*32 + constants.paddingXXLarge
// redefine contentItem, as the default crops the text easily
contentItem: Label {
text: cb.currentText
padding: constants.paddingLarge
rightPadding: constants.paddingXXLarge
font.pixelSize: constants.fontSizeMedium
}
}