ecc.php code, around line 2610:
Code: Select all
// CTRL+F, Toggles Fullscreen mode
if ($event->keyval == '102' && $event->state == '4') {
if($this->wdo_main->window->get_state() != 16) $this->wdo_main->fullscreen();
else $this->wdo_main->unfullscreen();
return true;
}
I assume this problem was always there but has never been adressed, so i will attempt to fix it!