From: Dana Jansens Date: Tue, 14 May 2002 19:32:32 +0000 (+0000) Subject: set the button windows to None when they are destroyed so we know they are no longer... X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=527864614bbbadcfd5f454e7dd1781d343881e7d;p=chaz%2Fopenbox set the button windows to None when they are destroyed so we know they are no longer valid windows --- diff --git a/src/Window.cc b/src/Window.cc index 0e5af867..70b2ea05 100644 --- a/src/Window.cc +++ b/src/Window.cc @@ -788,14 +788,17 @@ void OpenboxWindow::positionButtons() { if (!hasclose && frame.close_button) { openbox.removeWindowSearch(frame.close_button); XDestroyWindow(display, frame.close_button); + frame.close_button = None; } if (!hasiconify && frame.iconify_button) { openbox.removeWindowSearch(frame.iconify_button); XDestroyWindow(display, frame.iconify_button); + frame.iconify_button = None; } if (!hasmaximize && frame.iconify_button) { openbox.removeWindowSearch(frame.maximize_button); XDestroyWindow(display, frame.maximize_button); + frame.maximize_button = None; } redrawLabel();