all repos — openbox @ 4c10947be5885d977a252d6300f4cb2b5646d8ec

openbox fork - make it a bit more like ryudo

subtract 1 from teh workspace number specified
Dana Jansens danakj@orodu.net
commit

4c10947be5885d977a252d6300f4cb2b5646d8ec

parent

72c56d793b21cb0dae7a6a3d0baf580dacc4a34f

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

jump to
M util/epist/actions.ccutil/epist/actions.cc

@@ -46,6 +46,6 @@ }

_numberParam = atoi( str.c_str() ); - if (type == changeWorkspace) - _numberParam; + if (type == changeWorkspace) // workspace 1 to the user is workspace 0 to us + _numberParam--; }