all repos — openbox @ e5e886bc0f865d0542d652aaa5bdd6b39396e9c3

openbox fork - make it a bit more like ryudo

sendTo and goto workspaces both need to start at 0, not 1
Dana Jansens danakj@orodu.net
commit

e5e886bc0f865d0542d652aaa5bdd6b39396e9c3

parent

1f539dccc6b6cc041016aca420390b3d097e6fbd

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

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

@@ -52,6 +52,7 @@ }

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