all repos — fluxbox @ c39af52bfca7f6962048a102597d88337c949b67

custom fork of the fluxbox windowmanager

fix startup items in apps file with specified screen number
Mark Tiefenbruck mark@fluxbox.org
commit

c39af52bfca7f6962048a102597d88337c949b67

parent

51377a3c360b5a1d85bee40438df631c518e622f

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

jump to
M ChangeLogChangeLog

@@ -1,5 +1,9 @@

(Format: Year/Month/Day) Changes for 1.0.1: +*07/12/17: + * Fix startup items in apps file with specified screen number, bug #1843325 + (thanks Martin) + Remember.cc *07/12/14: * Fix compiling with gcc 4.3 (thanks Dmitry E. Oboukhov) main.cc
M src/Remember.ccsrc/Remember.cc

@@ -212,7 +212,7 @@ bool error = false;

if (pos > 0) { option = str.substr(0, pos); if (strcasecmp(option.c_str(), "screen") == 0) { - error = getuint(str.c_str() + pos + 1, screen); + error = !getuint(str.c_str() + pos + 1, screen); } else { error = true; }