From 7f6fd740f2830d7aa6a4a01f72a3bd9663b73d4c Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Wed, 24 Oct 2007 08:24:01 +0000 Subject: [PATCH] (x_figure_window_size): For fullscreen case, set USPosition | PPosition without clobbering rest of window_prompting. --- src/frame.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frame.c b/src/frame.c index df98475d7b3..7ba3e9928ab 100644 --- a/src/frame.c +++ b/src/frame.c @@ -3922,7 +3922,7 @@ x_figure_window_size (f, parms, toolbar_p) int width, height; /* It takes both for some WM:s to place it where we want */ - window_prompting = USPosition | PPosition; + window_prompting |= USPosition | PPosition; x_fullscreen_adjust (f, &width, &height, &top, &left); FRAME_COLS (f) = width; FRAME_LINES (f) = height; -- 2.39.2