diff options
Diffstat (limited to 'src/Window.cc')
-rw-r--r-- | src/Window.cc | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/src/Window.cc b/src/Window.cc index dfcc7a9..967f943 100644 --- a/src/Window.cc +++ b/src/Window.cc | |||
@@ -22,7 +22,7 @@ | |||
22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
23 | // DEALINGS IN THE SOFTWARE. | 23 | // DEALINGS IN THE SOFTWARE. |
24 | 24 | ||
25 | // $Id: Window.cc,v 1.160 2003/05/07 16:21:26 rathnor Exp $ | 25 | // $Id: Window.cc,v 1.161 2003/05/07 16:44:51 rathnor Exp $ |
26 | 26 | ||
27 | #include "Window.hh" | 27 | #include "Window.hh" |
28 | 28 | ||
@@ -631,18 +631,26 @@ bool FluxboxWindow::removeClient(WinClient &client) { | |||
631 | cerr<<__FILE__<<"("<<__FUNCTION__<<")["<<this<<"]"<<endl; | 631 | cerr<<__FILE__<<"("<<__FUNCTION__<<")["<<this<<"]"<<endl; |
632 | #endif // DEBUG | 632 | #endif // DEBUG |
633 | 633 | ||
634 | // if it is our active client, deal with it... | ||
635 | if (m_client == &client) { | ||
634 | // set next client to be focused | 636 | // set next client to be focused |
635 | // if the client we're about to remove is the last client then set prev client | 637 | // if the client we're about to remove is the last client then set prev client |
636 | if (&client == m_clientlist.back()) | 638 | if (&client == m_clientlist.back()) |
637 | prevClient(); | 639 | prevClient(); |
638 | else | 640 | else |
639 | nextClient(); | 641 | nextClient(); |
642 | } | ||
640 | 643 | ||
641 | client.m_win = 0; | 644 | client.m_win = 0; |
642 | m_clientlist.remove(&client); | 645 | m_clientlist.remove(&client); |
643 | 646 | ||
644 | if (m_client == &client && m_clientlist.empty()) | 647 | if (m_client == &client) { |
645 | m_client = 0; | 648 | if (m_clientlist.empty()) |
649 | m_client = 0; | ||
650 | else | ||
651 | // this really shouldn't happen | ||
652 | m_client = m_clientlist.back(); | ||
653 | } | ||
646 | 654 | ||
647 | FbTk::EventManager &evm = *FbTk::EventManager::instance(); | 655 | FbTk::EventManager &evm = *FbTk::EventManager::instance(); |
648 | evm.remove(client.window()); | 656 | evm.remove(client.window()); |