mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
QML UI: do not overflow right margin on BT text
Trivial and cosmetics only fix. The width of the rescan button was forgotten, and this pushed the right margin to the right, causing the combo menus to overflow the right margin. Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
This commit is contained in:
parent
e7ae749d52
commit
394054ebc1
1 changed files with 1 additions and 1 deletions
|
@ -229,7 +229,7 @@ Kirigami.Page {
|
|||
}
|
||||
|
||||
Controls.Label {
|
||||
Layout.maximumWidth: parent.width - download.width - quitbutton.width
|
||||
Layout.maximumWidth: parent.width - download.width - quitbutton.width - rescanbutton.width
|
||||
text: divesDownloaded ? qsTr(" Downloaded dives") :
|
||||
(manager.progressMessage != "" ? qsTr("Info:") + " " + manager.progressMessage : btMessage)
|
||||
wrapMode: Text.WrapAtWordBoundaryOrAnywhere
|
||||
|
|
Loading…
Add table
Reference in a new issue