From d761dd42361f65e10ce6b84696c2435c5a5a3d49 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jan=20Dj=C3=A4rv?= Date: Fri, 10 Nov 2006 07:54:22 +0000 Subject: [PATCH] (x_set_fullscreen): Call fullscreen_hook if set. --- src/frame.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/frame.c b/src/frame.c index 836516d29cf..75992824fd3 100644 --- a/src/frame.c +++ b/src/frame.c @@ -3034,6 +3034,9 @@ x_set_fullscreen (f, new_value, old_value) f->want_fullscreen = FULLSCREEN_WIDTH; else if (EQ (new_value, Qfullheight)) f->want_fullscreen = FULLSCREEN_HEIGHT; + + if (fullscreen_hook != NULL) + fullscreen_hook (f); } -- 2.39.5