mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-25 15:44:04 -06:00
Fix font rendering on second column
This commit is contained in:
parent
a41bc77e5a
commit
940a60a4cb
1 changed files with 4 additions and 4 deletions
|
@ -55,7 +55,7 @@ Cura.MachineAction
|
||||||
|
|
||||||
Column
|
Column
|
||||||
{
|
{
|
||||||
width: parent.width / 2
|
width: Math.floor(parent.width / 2)
|
||||||
spacing: UM.Theme.getSize("default_margin").height
|
spacing: UM.Theme.getSize("default_margin").height
|
||||||
|
|
||||||
Label
|
Label
|
||||||
|
@ -243,7 +243,7 @@ Cura.MachineAction
|
||||||
|
|
||||||
Column
|
Column
|
||||||
{
|
{
|
||||||
width: parent.width / 2
|
width: Math.floor(parent.width / 2)
|
||||||
spacing: UM.Theme.getSize("default_margin").height
|
spacing: UM.Theme.getSize("default_margin").height
|
||||||
|
|
||||||
Label
|
Label
|
||||||
|
@ -407,7 +407,7 @@ Cura.MachineAction
|
||||||
Column
|
Column
|
||||||
{
|
{
|
||||||
height: parent.height
|
height: parent.height
|
||||||
width: parent.width / 2
|
width: Math.floor(parent.width / 2)
|
||||||
Label
|
Label
|
||||||
{
|
{
|
||||||
text: catalog.i18nc("@label", "Start Gcode")
|
text: catalog.i18nc("@label", "Start Gcode")
|
||||||
|
@ -431,7 +431,7 @@ Cura.MachineAction
|
||||||
}
|
}
|
||||||
Column {
|
Column {
|
||||||
height: parent.height
|
height: parent.height
|
||||||
width: parent.width / 2
|
width: Math.floor(parent.width / 2)
|
||||||
Label
|
Label
|
||||||
{
|
{
|
||||||
text: catalog.i18nc("@label", "End Gcode")
|
text: catalog.i18nc("@label", "End Gcode")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue