mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-25 07:33:57 -06:00
Increase the padding with the button
Add more padding when the draggable area is visible
This commit is contained in:
parent
2435b97ef7
commit
86b0ac320b
1 changed files with 2 additions and 1 deletions
|
@ -104,7 +104,7 @@ Item
|
||||||
{
|
{
|
||||||
id: buttonRow
|
id: buttonRow
|
||||||
property real padding: UM.Theme.getSize("default_margin").width
|
property real padding: UM.Theme.getSize("default_margin").width
|
||||||
height: recommendedButton.height + 2 * padding
|
height: recommendedButton.height + 2 * padding + (draggableArea.visible ? draggableArea.height : 0)
|
||||||
|
|
||||||
anchors
|
anchors
|
||||||
{
|
{
|
||||||
|
@ -144,6 +144,7 @@ Item
|
||||||
//Invisible area at the bottom with which you can resize the panel.
|
//Invisible area at the bottom with which you can resize the panel.
|
||||||
MouseArea
|
MouseArea
|
||||||
{
|
{
|
||||||
|
id: draggableArea
|
||||||
anchors
|
anchors
|
||||||
{
|
{
|
||||||
left: parent.left
|
left: parent.left
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue