E: Fix e_mouse initializing.

NB: The logic looked wrong here. (was if ecore_x_pointer_mapping_set
succeeds, then return a fail of e_mouse_update). That makes no sense.
We should only return a fail of mouse_update if the
ecore_x_pointer_mapping_set function call Fails.



SVN revision: 70247
This commit is contained in:
Christopher Michael 2012-04-16 21:56:30 +00:00
parent 69624a7f82
commit aafe309fa3
1 changed files with 4 additions and 3 deletions

View File

@ -7,8 +7,8 @@ e_mouse_update(void)
int n;
if (!ecore_x_pointer_control_set(e_config->mouse_accel_numerator,
e_config->mouse_accel_denominator,
e_config->mouse_accel_threshold))
e_config->mouse_accel_denominator,
e_config->mouse_accel_threshold))
return 0;
if (!ecore_x_pointer_mapping_get(map, 256)) return 0;
@ -34,7 +34,8 @@ e_mouse_update(void)
map[0] = 3;
map[2] = 1;
}
if (ecore_x_pointer_mapping_set(map, n)) return 0;
if (!ecore_x_pointer_mapping_set(map, n)) return 0;
return 1;
}