all repos — fluxbox @ e9dd7670f36e8b32ee8dd2b52e1c4f31f808b35c

custom fork of the fluxbox windowmanager

don't run [startup] items in apps file on reconfigure when apps file has been modified
markt markt
commit

e9dd7670f36e8b32ee8dd2b52e1c4f31f808b35c

parent

e8a86fb91c5d51d748d2c782ee146b690756f2b7

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

jump to
M ChangeLogChangeLog

@@ -2,6 +2,8 @@ (Format: Year/Month/Day)

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
M src/Remember.ccsrc/Remember.cc

@@ -577,7 +577,8 @@ }

} 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; }