From e413e073a808626f1a382736e1a27d03984c7e3e Mon Sep 17 00:00:00 2001 From: Krisjanis Rijnieks Date: Tue, 18 Oct 2016 13:59:14 +0200 Subject: [PATCH] Remove fullscreen toggle on keypress If one needs it, it can be integrated on the ofApp level, --- src/Application/Application.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Application/Application.cpp b/src/Application/Application.cpp index 2117404..76eb131 100644 --- a/src/Application/Application.cpp +++ b/src/Application/Application.cpp @@ -128,10 +128,6 @@ void Application::onKeyPressed(ofKeyEventArgs & args){ setSourceMode(); break; - case 'f': - ofToggleFullscreen(); - break; - case 'i': _info.toggle(); break;