Search found 6 matches

by bridgs
Mon Jul 29, 2019 8:54 pm
Forum: Support and Development
Topic: Correctly resizing window on HD monitor?
Replies: 11
Views: 9605

Re: Correctly resizing window on HD monitor?

Thank you for that context. It sounds like there's no action to be taken on this so I'll close the bug ticket I opened. If anyone finds with thread in the future, I'll update it if I see the issue resolved or see a reliable workaround.
by bridgs
Mon Jul 29, 2019 3:43 pm
Forum: Support and Development
Topic: Correctly resizing window on HD monitor?
Replies: 11
Views: 9605

Re: Correctly resizing window on HD monitor?

Well this is interesting! If I add this to my code: function love.keypressed(key) local width, height = love.window.getMode() love.window.updateMode(width, height) end Then what happens is I can drag the LÖVE window to any screen/monitor, and if I then press a key it'll become "attuned" to...
by bridgs
Thu Jul 25, 2019 9:14 pm
Forum: Support and Development
Topic: Correctly resizing window on HD monitor?
Replies: 11
Views: 9605

Re: Correctly resizing window on HD monitor?

Calls to setMode will transfer the LÖVE window back to my laptop screen, which is my primary monitor. And actually, if I swap it such that my HD monitor is my primary monitor, then LÖVE resizes just fine on my HD monitor but has the same resize failure when resizing it on my laptop. So I guess it's ...
by bridgs
Thu Jul 25, 2019 2:34 pm
Forum: Support and Development
Topic: Correctly resizing window on HD monitor?
Replies: 11
Views: 9605

Re: Correctly resizing window on HD monitor?

Ah, and the monosnap you shared looks to be rendered correctly! Here's what it looks like when I resize the window on my external HD monitor: http://www.giphy.com/gifs/cmgGlbgcUR7zW2Di9x Not only does it not properly render the game in the yellow area, but resizing vertically also inappropriately of...
by bridgs
Thu Jul 25, 2019 2:24 pm
Forum: Support and Development
Topic: Correctly resizing window on HD monitor?
Replies: 11
Views: 9605

Re: Correctly resizing window on HD monitor?

Initially:
window 500 x 500
display 1 1680 x 1050

After resizing successfully on my laptop monitor:
window 726 x 500
display 1 1680 x 1050

After failing to render properly after resizing on my external monitor:
window 679 x 500
display 2 1920 x 1080
by bridgs
Wed Jul 24, 2019 8:08 pm
Forum: Support and Development
Topic: Correctly resizing window on HD monitor?
Replies: 11
Views: 9605

Correctly resizing window on HD monitor?

Hello y'all! I'm working on a game and noticed a weird resizing issue. Would love some help! When I run a resizable game, drag the game window to my HD monitor, and resize it there, the game fails to resize correctly and doesn't fill the window. I opened a bug ticket which includes more precise repr...