don't run [startup] items in apps file on reconfigure when apps file has been modified
This commit is contained in:
parent
e8a86fb91c
commit
e9dd7670f3
2 changed files with 4 additions and 1 deletions
|
@ -2,6 +2,8 @@
|
|||
Changes for 1.0rc3:
|
||||
*07/01/01:
|
||||
* Happy New Year!
|
||||
* Don't run [startup] items in apps file on reconfigure (Mark)
|
||||
Remember.cc
|
||||
* Fix data type of data passed to set _NET_FRAME_EXTENTS (Simon)
|
||||
(sf.net #1621980)
|
||||
Similar fix for gnome current workspace... remember that XA_CARDINAL
|
||||
|
|
|
@ -577,7 +577,8 @@ void Remember::reconfigure() {
|
|||
} else {
|
||||
grouped_pats.push_back(pat);
|
||||
}
|
||||
} else if (pos > 0 && strcasecmp(key.c_str(), "startup") == 0) {
|
||||
} else if (pos > 0 && strcasecmp(key.c_str(), "startup") == 0 &&
|
||||
Fluxbox::instance()->isStartup()) {
|
||||
if (!handleStartupItem(line, pos)) {
|
||||
cerr<<"Error reading apps file at line "<<row<<"."<<endl;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue