wayland: Add a note for why we check 0,0 for fullscreen configurations

main
Ethan Lee 2021-12-16 10:22:27 -05:00 committed by GitHub
parent 6101499c7c
commit 4c9966eed6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -289,6 +289,9 @@ handle_configure_xdg_toplevel(void *data,
} else {
/* For fullscreen, foolishly do what the compositor says. If it's wrong,
* don't blame us, we were explicitly instructed to do this.
*
* UPDATE: Nope, sure enough a compositor sends 0,0. This is a known bug:
* https://bugs.kde.org/show_bug.cgi?id=444962
*/
if (width != 0 && height != 0) {
window->w = width;