all repos — openbox @ 2d5e1c55f132a0a834eb28146fe60c8e2ca8e665

openbox fork - make it a bit more like ryudo

don't let windows snap to themself
Dana Jansens danakj@orodu.net
commit

2d5e1c55f132a0a834eb28146fe60c8e2ca8e665

parent

652addd232e3f2a7c6c681b9669917e0a416331f

1 files changed, 2 insertions(+), 1 deletions(-)

jump to
M src/Window.ccsrc/Window.cc

@@ -3153,7 +3153,8 @@ // add windows on the workspace to the rect list

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)