E: Fix mouse wheel binding bugger that was setting the wrong labels

for mouse wheel events. (Z is actually -1 for wheel up and 1 for wheel
down).



SVN revision: 71845
This commit is contained in:
Christopher Michael 2012-06-08 11:18:52 +00:00
parent 69dc5013aa
commit 9b75256e09
1 changed files with 11 additions and 12 deletions

View File

@ -1192,14 +1192,13 @@ _helper_wheel_name_get(E_Config_Binding_Wheel *bw)
switch (bw->direction)
{
case 0:
if (bw->z >= 0)
if (bw->z < 0)
name = strdup("Mouse Wheel Up");
else
name = strdup("Mouse Wheel Down");
break;
default:
if (bw->z >= 0)
if (bw->z < 0)
snprintf(buf, sizeof(buf), "Extra Wheel (%d) Up", bw->direction);
else
snprintf(buf, sizeof(buf), "Extra Wheel (%d) Down", bw->direction);