BurntSushi / wingo

A fully-featured window manager written in Go.
Do What The F*ck You Want To Public License
1k stars 90 forks source link

Mplayer video output isn't resized on being put into fullscreen #25

Closed guelfey closed 12 years ago

guelfey commented 12 years ago

When you start mplayer and put it into fullscreen mode with f, the window is resized accordingly, but the size of the actual video doesn't change; there's a big white border around the video. If you resize the window, the video output is changed accordingly.

This is probably due to mplayer not receiving a ConfigureNotify event (or something like that).

I'll try to provide a screenshot.

BurntSushi commented 12 years ago

mplayer is misbehaving. After it requests a fullscreen window, it then tries to resize itself back to a smaller window.

I've fixed it by denying configure requests to fullscreened windows. Hopefully this won't hurt other things, but I do the same thing for maximized windows.