]> Dogcows Code - chaz/openbox/blobdiff - plugins/mouse/translate.c
dockapps are ObWindows now.
[chaz/openbox] / plugins / mouse / translate.c
index c73235958126ac9ab86230d3ce5434a7f6357a24..9f042dd9991c5f50f505263783dd7f25dee6858d 100644 (file)
@@ -50,7 +50,7 @@ gboolean translate_button(char *str, guint *state, guint *button)
     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;
This page took 0.02339 seconds and 4 git commands to generate.