josefnpat / vapor

Vapor - LÖVE Distribution Client
zlib License
77 stars 24 forks source link

ALT-F4 does not quit (windows) #121

Closed josefnpat closed 10 years ago

josefnpat commented 10 years ago

Alt-F4 doesn't close the window on Windows.

102

I did not know that by overriding love.quit that love.event.quit is no longer called.

The fix to this is to add love.event.quit to love.quit

josefnpat commented 10 years ago

I had no idea that windows was the only one that didn't handle the OS quit.

@boolsheet suggest something along these lines:

function love.keypressed(k) if k =="f4" and love.keyboard.isDown("lshift", "rshift") then love.event.quit() end end