Settings: Ensure a minimum size of 1280x720
This commit is contained in:
parent
c0cfdff1d9
commit
38f35fbd7d
1 changed files with 2 additions and 2 deletions
|
|
@ -193,8 +193,8 @@ NLoader {
|
|||
border.color: Colors.mOutlineVariant
|
||||
border.width: Math.max(1, Style.borderThin * scaling)
|
||||
layer.enabled: true
|
||||
width: (screen.width * 0.5) * scaling
|
||||
height: (screen.height * 0.5) * scaling
|
||||
width: Math.max(screen.width * 0.5, 1280) * scaling
|
||||
height: Math.max(screen.width * 0.5, 720) * scaling
|
||||
anchors.centerIn: parent
|
||||
|
||||
// Animation properties
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue