Quentin Rameau wrote:
> if(fullscreen) {
> - …
> + if(!c->isfullscreen) {
> + …
> + }
> }
> - else {
> + else if(c->isfullscreen) {Heyho Quentin, you should merge the conditions of the first two nested if statements and change the else if to hold the complete condition `(!fullscreen && c->isfullscreen)`. --Markus
