all repos — openbox @ 50fba4bca88de356ea1f3cdf218eae6ecd6dd662

openbox fork - make it a bit more like ryudo

use Button<num> instead of just <num> for specifying buttons by number
Dana Jansens danakj@orodu.net
commit

50fba4bca88de356ea1f3cdf218eae6ecd6dd662

parent

038e61197479865d15cb6ef686e80e47bf2fd843

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

jump to
M plugins/mouse/translate.cplugins/mouse/translate.c

@@ -50,7 +50,7 @@ else if (!g_ascii_strcasecmp("Middle", l)) *button = 2;

else if (!g_ascii_strcasecmp("Right", l)) *button = 3; else if (!g_ascii_strcasecmp("Up", l)) *button = 4; else if (!g_ascii_strcasecmp("Down", l)) *button = 5; - else *button = atoi(l); + else if (!g_ascii_strncasecmp("Button", l, 6)) *button = atoi(l+6); if (!*button) { g_warning("Invalid button '%s' in pointer binding.", l); goto translation_fail;