mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-10 19:18:58 +08:00
Fix font rendering on second column
This commit is contained in:
parent
a41bc77e5a
commit
940a60a4cb
@ -55,7 +55,7 @@ Cura.MachineAction
|
||||
|
||||
Column
|
||||
{
|
||||
width: parent.width / 2
|
||||
width: Math.floor(parent.width / 2)
|
||||
spacing: UM.Theme.getSize("default_margin").height
|
||||
|
||||
Label
|
||||
@ -243,7 +243,7 @@ Cura.MachineAction
|
||||
|
||||
Column
|
||||
{
|
||||
width: parent.width / 2
|
||||
width: Math.floor(parent.width / 2)
|
||||
spacing: UM.Theme.getSize("default_margin").height
|
||||
|
||||
Label
|
||||
@ -407,7 +407,7 @@ Cura.MachineAction
|
||||
Column
|
||||
{
|
||||
height: parent.height
|
||||
width: parent.width / 2
|
||||
width: Math.floor(parent.width / 2)
|
||||
Label
|
||||
{
|
||||
text: catalog.i18nc("@label", "Start Gcode")
|
||||
@ -431,7 +431,7 @@ Cura.MachineAction
|
||||
}
|
||||
Column {
|
||||
height: parent.height
|
||||
width: parent.width / 2
|
||||
width: Math.floor(parent.width / 2)
|
||||
Label
|
||||
{
|
||||
text: catalog.i18nc("@label", "End Gcode")
|
||||
|
Loading…
x
Reference in New Issue
Block a user