From 07300da7dfc1f783418e81eb7bea9b6c42952755 Mon Sep 17 00:00:00 2001 From: Bert Münnich Date: Tue, 16 Jul 2019 19:26:04 +0200 Subject: Do not keep track of fullscreen state There is no more need for this after the removal of the special color handling for fullscreen mode in commit 2886876. --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main.c') diff --git a/main.c b/main.c index 8adbf78..59c411a 100644 --- a/main.c +++ b/main.c @@ -774,7 +774,7 @@ void run(void) } else { tns.dirty = true; } - if (!resized || win.fullscreen) { + if (!resized) { redraw(); set_timeout(clear_resize, TO_REDRAW_RESIZE, false); resized = true; -- cgit v1.2.3-54-g00ecf