diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | src/Window.cc | 5 |
2 files changed, 6 insertions, 1 deletions
@@ -1,6 +1,8 @@ | |||
1 | (Format: Year/Month/Day) | 1 | (Format: Year/Month/Day) |
2 | Changes for 1.0.1: | 2 | Changes for 1.0.1: |
3 | *07/10/22: | 3 | *07/10/22: |
4 | * Fixed crash bug at restart. ( Henrik ) | ||
5 | Window.cc | ||
4 | * Replaced modKey with new commands StartMoving and StartResizing (Mark) | 6 | * Replaced modKey with new commands StartMoving and StartResizing (Mark) |
5 | - your keys file should be updated automatically | 7 | - your keys file should be updated automatically |
6 | - they must be used with a mouse button, or they won't work | 8 | - they must be used with a mouse button, or they won't work |
diff --git a/src/Window.cc b/src/Window.cc index dbd945f..133ccd2 100644 --- a/src/Window.cc +++ b/src/Window.cc | |||
@@ -295,8 +295,11 @@ FluxboxWindow::FluxboxWindow(WinClient &client, FbWinFrameTheme &tm, | |||
295 | FluxboxWindow::~FluxboxWindow() { | 295 | FluxboxWindow::~FluxboxWindow() { |
296 | if (WindowCmd<void>::window() == this) | 296 | if (WindowCmd<void>::window() == this) |
297 | WindowCmd<void>::setWindow(0); | 297 | WindowCmd<void>::setWindow(0); |
298 | if ( Fluxbox::instance()->keys() != 0 ) { | ||
299 | Fluxbox::instance()->keys()-> | ||
300 | unregisterWindow(frame().window().window()); | ||
301 | } | ||
298 | 302 | ||
299 | Fluxbox::instance()->keys()->unregisterWindow(frame().window().window()); | ||
300 | 303 | ||
301 | #ifdef DEBUG | 304 | #ifdef DEBUG |
302 | const char* title = m_client ? m_client->title().c_str() : "" ; | 305 | const char* title = m_client ? m_client->title().c_str() : "" ; |