aboutsummaryrefslogtreecommitdiff
path: root/src/CurrentWindowCmd.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/CurrentWindowCmd.cc')
-rw-r--r--src/CurrentWindowCmd.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/CurrentWindowCmd.cc b/src/CurrentWindowCmd.cc
index 4c77eac..ba3af0d 100644
--- a/src/CurrentWindowCmd.cc
+++ b/src/CurrentWindowCmd.cc
@@ -129,3 +129,8 @@ void ResizeToCmd::real_execute() {
129 if (m_step_size_x > 0 && m_step_size_y > 0) 129 if (m_step_size_x > 0 && m_step_size_y > 0)
130 fbwindow().resize(m_step_size_x, m_step_size_y); 130 fbwindow().resize(m_step_size_x, m_step_size_y);
131} 131}
132
133FullscreenCmd::FullscreenCmd() { }
134void FullscreenCmd::real_execute() {
135 fbwindow().setFullscreen(!fbwindow().isFullscreen());
136}