From: Dana Jansens Date: Thu, 8 Aug 2002 23:02:52 +0000 (+0000) Subject: don't let windows snap to themself X-Git-Url: https://git.dogcows.com/gitweb?a=commitdiff_plain;h=2d5e1c55f132a0a834eb28146fe60c8e2ca8e665;p=chaz%2Fopenbox don't let windows snap to themself --- diff --git a/src/Window.cc b/src/Window.cc index 3935f829..fae990b6 100644 --- a/src/Window.cc +++ b/src/Window.cc @@ -3153,7 +3153,8 @@ void BlackboxWindow::doWindowSnapping(int &dx, int &dy) { const BlackboxWindowList& stack_list = w->getStackingList(); BlackboxWindowList::const_iterator st_it, st_end = stack_list.end(); for (st_it = stack_list.begin(); st_it != st_end; ++st_it) - rectlist.push_back( (*st_it)->frameRect() ); + if (*st_it != this) // don't snap to ourself + rectlist.push_back( (*st_it)->frameRect() ); // add the toolbar and the slit to the rect list. // (only if they are not hidden)