mirror of
https://github.com/love2d/love.git
synced 2026-08-13 09:00:54 +02:00
The minwidth and minheight window flags have default values of 0 instead of 100 (resolves issue #735).
The real minimum window width and height are still system-dependent.
This commit is contained in:
@@ -283,8 +283,8 @@ function love.init()
|
||||
window = {
|
||||
width = 800,
|
||||
height = 600,
|
||||
minwidth = 100,
|
||||
minheight = 100,
|
||||
minwidth = 0,
|
||||
minheight = 0,
|
||||
fullscreen = false,
|
||||
fullscreentype = "normal",
|
||||
display = 1,
|
||||
|
||||
Reference in New Issue
Block a user