mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-12-22 19:49:34 +00:00
AdvancedOptionsItem: fix title width
This commit is contained in:
parent
c72729fa5d
commit
4a60519769
1 changed files with 5 additions and 5 deletions
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue