AdvancedOptionsItem: fix title width

This commit is contained in:
rating89us 2021-11-27 14:56:28 +01:00
parent c72729fa5d
commit 4a60519769

View file

@ -14,14 +14,14 @@ RowLayout {
RowLayout { RowLayout {
id: titlecolumn id: titlecolumn
Layout.alignment: Qt.AlignTop | Qt.AlignLeft Layout.alignment: Qt.AlignVCenter | Qt.AlignLeft
Layout.preferredWidth: 195 property var language: persistentSettings.language
Layout.maximumWidth: 195 Layout.preferredWidth: language == "Deutsch" ? 280 : language == "Español" ? 250 : language == "Français" ? 235 : 220
Layout.maximumWidth: language == "Deutsch" ? 280 : language == "Español" ? 250 : language == "Français" ? 235 : 220
Layout.leftMargin: 10 Layout.leftMargin: 10
MoneroComponents.Label { MoneroComponents.TextPlain {
id: title id: title
fontSize: 14
tooltipIconVisible: true tooltipIconVisible: true
} }