all repos — fluxbox @ 2c8e8e59151d808747a4dc2fd3001154a68cd015

custom fork of the fluxbox windowmanager

fix crash when closing active window while cycling focus
rathnor rathnor
commit

2c8e8e59151d808747a4dc2fd3001154a68cd015

parent

feb7462e381b4015bc736e90da87dc7cc5711b1a

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

jump to
M ChangeLogChangeLog

@@ -1,6 +1,8 @@

(Format: Year/Month/Day) Changes for 0.9.6: *03/09/24: + * Fix crash when closing active window while cycling focus (Simon) + Screen.cc * Fix updates to mwm_hints, and make configure request move and resize atomic (Simon) - fixes mplayer fullscreen window being moveable
M src/Screen.ccsrc/Screen.cc

@@ -22,7 +22,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: Screen.cc,v 1.233 2003/09/14 10:13:54 fluxgen Exp $ +// $Id: Screen.cc,v 1.234 2003/09/24 14:26:01 rathnor Exp $ #include "Screen.hh"

@@ -743,6 +743,9 @@ client.transientFor()->fbwindow()->setInputFocus();

else Fluxbox::instance()->revertFocus(focused->screen()); } + + if (cycling_last == &client) + cycling_last = 0; for_each(getWorkspacesList().begin(), getWorkspacesList().end(), mem_fun(&Workspace::updateClientmenu));