diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/Remember.cc | 2 |
2 files changed, 5 insertions, 3 deletions
@@ -1,6 +1,8 @@ | |||
1 | (Format: Year/Month/Day) | 1 | (Format: Year/Month/Day) |
2 | Changes for 1.0rc3: | 2 | Changes for 1.0rc3: |
3 | *06/07/29: | 3 | *06/07/29: |
4 | * Don't jump to remembered apps on restart (Mark) | ||
5 | Remember.cc | ||
4 | * Make _NET_CLIENT_LIST report windows in creation order - still need to fix | 6 | * Make _NET_CLIENT_LIST report windows in creation order - still need to fix |
5 | _NET_CLIENT_LIST_STACKING (Mark) | 7 | _NET_CLIENT_LIST_STACKING (Mark) |
6 | FocusControl.hh Ewmh.cc | 8 | FocusControl.hh Ewmh.cc |
@@ -53,8 +55,8 @@ Changes for 1.0rc3: | |||
53 | * Fix a possible bug with window cycling on multiple screens (Mark) | 55 | * Fix a possible bug with window cycling on multiple screens (Mark) |
54 | fluxbox.cc WorkspaceCmd.cc | 56 | fluxbox.cc WorkspaceCmd.cc |
55 | * Include minimized windows when "alt-tabbing", added 16 to the | 57 | * Include minimized windows when "alt-tabbing", added 16 to the |
56 | Next/PrevWindow bitmask to disable the behavior (Mark) | 58 | Next/PrevWindow bitmask to disable the behavior (Mark) |
57 | FocusControl.cc/hh | 59 | FocusControl.cc/hh |
58 | *06/07/13: | 60 | *06/07/13: |
59 | * Remove some redundant code for loading styles (Mark) | 61 | * Remove some redundant code for loading styles (Mark) |
60 | fluxbox.cc Screen.cc RootTheme.cc/hh | 62 | fluxbox.cc Screen.cc RootTheme.cc/hh |
diff --git a/src/Remember.cc b/src/Remember.cc index eace6bc..2a28dda 100644 --- a/src/Remember.cc +++ b/src/Remember.cc | |||
@@ -970,7 +970,7 @@ void Remember::setupFrame(FluxboxWindow &win) { | |||
970 | if (app->workspace_remember) { | 970 | if (app->workspace_remember) { |
971 | // we use setWorkspace and not reassoc because we're still initialising | 971 | // we use setWorkspace and not reassoc because we're still initialising |
972 | win.setWorkspace(app->workspace); | 972 | win.setWorkspace(app->workspace); |
973 | if (app->jumpworkspace_remember) | 973 | if (app->jumpworkspace_remember && !Fluxbox::instance()->isStartup()) |
974 | screen.changeWorkspaceID(app->workspace); | 974 | screen.changeWorkspaceID(app->workspace); |
975 | } | 975 | } |
976 | 976 | ||