mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-07 14:04:03 -06:00
Solve 'What's New' font troubles.
5-min fix.
This commit is contained in:
parent
61bbc6a935
commit
92c3c0cdea
1 changed files with 3 additions and 3 deletions
|
@ -93,8 +93,8 @@ Item
|
|||
top: parent.top
|
||||
topMargin: UM.Theme.getSize("default_margin").width
|
||||
}
|
||||
width: parent.width - (UM.Theme.getSize("default_margin").width * 2)
|
||||
height: (parent.height - UM.Theme.getSize("default_margin").height) * 0.75
|
||||
width: Math.round(parent.width - (UM.Theme.getSize("default_margin").width * 2))
|
||||
height: Math.round((parent.height - UM.Theme.getSize("default_margin").height) * 0.75)
|
||||
fillMode: Image.PreserveAspectFit
|
||||
|
||||
source: manager.getSubpageImageSource(index)
|
||||
|
@ -110,7 +110,7 @@ Item
|
|||
bottom: parent.bottom
|
||||
horizontalCenter: parent.horizontalCenter
|
||||
}
|
||||
width: parent.width - (UM.Theme.getSize("default_margin").width * 2)
|
||||
width: Math.round(parent.width - (UM.Theme.getSize("default_margin").width * 2))
|
||||
|
||||
ScrollBar.horizontal.policy: ScrollBar.AlwaysOff
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue