[Xfce4-commits] <xfwm4:master> Resize fullscreen windows on screen size changes (bug #8622)

Olivier Fourdan noreply at xfce.org
Tue Apr 10 21:44:01 CEST 2012


Updating branch refs/heads/master
         to 1f9b6ef5ff38c53785ff9cf1287be22e3bded469 (commit)
       from 9e89dcbdefd3f5cf1ff10dcd253fa053c42242b9 (commit)

commit 1f9b6ef5ff38c53785ff9cf1287be22e3bded469
Author: Olivier Fourdan <fourdan at xfce.org>
Date:   Tue Apr 10 21:41:39 2012 +0200

    Resize fullscreen windows on screen size changes (bug #8622)

 src/client.c |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/src/client.c b/src/client.c
index fb3665c..cea2de3 100644
--- a/src/client.c
+++ b/src/client.c
@@ -3553,6 +3553,10 @@ clientScreenResize(ScreenInfo *screen_info, gboolean fully_visible)
             wc.height = c->height;
             clientConfigure (c, &wc, CWX | CWY | CWWidth | CWHeight, CFG_NOTIFY);
         }
+        else if (FLAG_TEST (c->flags, CLIENT_FLAG_FULLSCREEN))
+        {
+            clientUpdateFullscreenSize (c);
+        }
         else
         {
             configure_flags = CFG_CONSTRAINED | CFG_REQUEST;


More information about the Xfce4-commits mailing list