all repos — fluxbox @ 83953b8f3753aef1362cbd3af4868a7f87e451a7

custom fork of the fluxbox windowmanager

don't jump to rememberd apps on restart
markt markt
commit

83953b8f3753aef1362cbd3af4868a7f87e451a7

parent

f66d91cf2281e9a7aec64b7c903c1ba91898324f

2 files changed, 5 insertions(+), 3 deletions(-)

jump to
M ChangeLogChangeLog

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

(Format: Year/Month/Day) Changes for 1.0rc3: *06/07/29: + * Don't jump to remembered apps on restart (Mark) + Remember.cc * Make _NET_CLIENT_LIST report windows in creation order - still need to fix _NET_CLIENT_LIST_STACKING (Mark) FocusControl.hh Ewmh.cc

@@ -53,8 +55,8 @@ *06/07/14:

* Fix a possible bug with window cycling on multiple screens (Mark) fluxbox.cc WorkspaceCmd.cc * Include minimized windows when "alt-tabbing", added 16 to the - Next/PrevWindow bitmask to disable the behavior (Mark) - FocusControl.cc/hh + Next/PrevWindow bitmask to disable the behavior (Mark) + FocusControl.cc/hh *06/07/13: * Remove some redundant code for loading styles (Mark) fluxbox.cc Screen.cc RootTheme.cc/hh
M src/Remember.ccsrc/Remember.cc

@@ -970,7 +970,7 @@

if (app->workspace_remember) { // we use setWorkspace and not reassoc because we're still initialising win.setWorkspace(app->workspace); - if (app->jumpworkspace_remember) + if (app->jumpworkspace_remember && !Fluxbox::instance()->isStartup()) screen.changeWorkspaceID(app->workspace); }