File tree Expand file tree Collapse file tree 1 file changed +9
-8
lines changed
Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -68,6 +68,15 @@ if (totalblocks > 0) {
6868 }
6969}
7070
71+ // Toggle blackout mode
72+ if (keyboard_check_pressed(vk_f10)) {
73+ blackout = !blackout
74+ }
75+ // Toggle fullscreen
76+ if (keyboard_check_pressed(vk_f11)) {
77+ fullscreen = !fullscreen
78+ }
79+
7180if (theme = 0 ) window_background = 15790320
7281if (theme = 1 ) window_background = 13160660
7382if (theme = 2 ) window_background = c_dark
@@ -603,14 +612,6 @@ if (window = 0 && text_focus = -1) {
603612 }
604613 }
605614 }
606- // Toggle blackout mode
607- if (keyboard_check_pressed (vk_f10)) {
608- blackout = !blackout
609- }
610- // Toggle fullscreen
611- if (keyboard_check_pressed (vk_f11)) {
612- fullscreen = !fullscreen
613- }
614615}
615616// Selecting note blocks
616617if (select > 0 ) {
You can’t perform that action at this time.
0 commit comments