diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | src/Remember.cc | 3 |
2 files changed, 4 insertions, 1 deletions
@@ -2,6 +2,8 @@ | |||
2 | Changes for 1.0rc3: | 2 | Changes for 1.0rc3: |
3 | *07/01/01: | 3 | *07/01/01: |
4 | * Happy New Year! | 4 | * Happy New Year! |
5 | * Don't run [startup] items in apps file on reconfigure (Mark) | ||
6 | Remember.cc | ||
5 | * Fix data type of data passed to set _NET_FRAME_EXTENTS (Simon) | 7 | * Fix data type of data passed to set _NET_FRAME_EXTENTS (Simon) |
6 | (sf.net #1621980) | 8 | (sf.net #1621980) |
7 | Similar fix for gnome current workspace... remember that XA_CARDINAL | 9 | Similar fix for gnome current workspace... remember that XA_CARDINAL |
diff --git a/src/Remember.cc b/src/Remember.cc index 9035325..6f41528 100644 --- a/src/Remember.cc +++ b/src/Remember.cc | |||
@@ -577,7 +577,8 @@ void Remember::reconfigure() { | |||
577 | } else { | 577 | } else { |
578 | grouped_pats.push_back(pat); | 578 | grouped_pats.push_back(pat); |
579 | } | 579 | } |
580 | } else if (pos > 0 && strcasecmp(key.c_str(), "startup") == 0) { | 580 | } else if (pos > 0 && strcasecmp(key.c_str(), "startup") == 0 && |
581 | Fluxbox::instance()->isStartup()) { | ||
581 | if (!handleStartupItem(line, pos)) { | 582 | if (!handleStartupItem(line, pos)) { |
582 | cerr<<"Error reading apps file at line "<<row<<"."<<endl; | 583 | cerr<<"Error reading apps file at line "<<row<<"."<<endl; |
583 | } | 584 | } |