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 {
id: titlecolumn
Layout.alignment: Qt.AlignTop | Qt.AlignLeft
Layout.preferredWidth: 195
Layout.maximumWidth: 195
Layout.alignment: Qt.AlignVCenter | Qt.AlignLeft
property var language: persistentSettings.language
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
MoneroComponents.Label {
MoneroComponents.TextPlain {
id: title
fontSize: 14
tooltipIconVisible: true
}