mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +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 {
|
SsrfCheckBox {
|
||||||
id: diveIsSelected
|
id: diveIsSelected
|
||||||
checked: innerListItem.selected;
|
checked: innerListItem.selected;
|
||||||
width: childrenRect.width - Kirigami.Units.smallSpacing;
|
width: childrenRect.width + 4 * Kirigami.Units.smallSpacing;
|
||||||
height: childrenRect.heigh - Kirigami.Units.smallSpacing;
|
height: childrenRect.heigh - Kirigami.Units.smallSpacing;
|
||||||
anchors.verticalCenter: parent.verticalCenter
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
onClicked: {
|
onClicked: {
|
||||||
|
|
Loading…
Add table
Reference in a new issue