From c43fa5e4eeee78c0990a6343b6c6246422b3ab9c Mon Sep 17 00:00:00 2001 From: dec05eba Date: Thu, 31 Mar 2022 01:53:39 +0200 Subject: Better detection of window destroyed --- src/main.cpp | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'src') diff --git a/src/main.cpp b/src/main.cpp index 21927a3..280e3f3 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1314,6 +1314,10 @@ int main(int argc, char **argv) { redraw = true; if(src_window_id) { + if (XCheckTypedWindowEvent(dpy, src_window_id, DestroyNotify, &e)) { + running = 0; + } + if (XCheckTypedWindowEvent(dpy, src_window_id, VisibilityNotify, &e)) { window_resize_timer = glfwGetTime(); window_resized = true; @@ -1405,12 +1409,6 @@ int main(int argc, char **argv) { if (frame_time_overflow >= 0.0) { frame_timer_start = time_now - frame_time_overflow; - if(dpy && src_window_id) { - XWindowAttributes attr; - if(!XGetWindowAttributes(dpy, src_window_id, &attr)) - running = 0; - } - bool frame_captured = true; if(redraw) { redraw = false; -- cgit v1.2.3