mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-17 22:46:16 +00:00
mobile, QML UI: fix overlapping button
The select buttons in the downloaded dives delegate overlapped the dive data. Simple margin change fixes this. Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
This commit is contained in:
parent
be1d3a7986
commit
7367d2535f
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ Kirigami.AbstractListItem {
|
|||
SsrfCheckBox {
|
||||
id: diveIsSelected
|
||||
checked: innerListItem.selected;
|
||||
width: childrenRect.width - Kirigami.Units.smallSpacing;
|
||||
width: childrenRect.width + 4 * Kirigami.Units.smallSpacing;
|
||||
height: childrenRect.heigh - Kirigami.Units.smallSpacing;
|
||||
anchors.verticalCenter: parent.verticalCenter
|
||||
onClicked: {
|
||||
|
|
Loading…
Add table
Reference in a new issue