mirror of
https://github.com/vlang/v.git
synced 2025-09-13 22:42:26 +03:00
examples: fix 2048 scaling
This commit is contained in:
parent
aa3d0ea345
commit
e662d61573
1 changed files with 2 additions and 2 deletions
|
@ -591,8 +591,8 @@ fn (mut app App) resize() {
|
|||
s = 1.0
|
||||
}
|
||||
window_size := gg.window_size()
|
||||
w := int(window_size.width / s)
|
||||
h := int(window_size.height / s)
|
||||
w := window_size.width
|
||||
h := window_size.height
|
||||
m := f32(min(w, h))
|
||||
app.ui.dpi_scale = s
|
||||
app.ui.window_width = w
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue