diff --git a/TODO b/TODO index 9f4af941c..e1f17ba51 100644 --- a/TODO +++ b/TODO @@ -29,6 +29,7 @@ Current freeze issues are: ISSUES: +* module needs to handle multiple architectures for modules (eg in ~/.e/e/modules) * ibar, temp and battery modules should only make 1 gadget per container and allow u to enable/disable that gadget on that container (like clock) * pager needs to be able to split off each desk in a zone it a different gadget * pager right click menu needs to do a lot more diff --git a/src/bin/e_config.c b/src/bin/e_config.c index 864fbed54..f52d7c928 100644 --- a/src/bin/e_config.c +++ b/src/bin/e_config.c @@ -127,7 +127,7 @@ e_config_init(void) e_config->bindings = evas_list_append(e_config->bindings, eb); eb = E_NEW(E_Config_Binding, 1); - eb->button = 3; + eb->button = 2; eb->mask = ECORE_X_EVENT_MASK_MOUSE_DOWN | ECORE_X_EVENT_MASK_MOUSE_UP | ECORE_X_EVENT_MASK_MOUSE_MOVE; @@ -136,7 +136,7 @@ e_config_init(void) e_config->bindings = evas_list_append(e_config->bindings, eb); eb = E_NEW(E_Config_Binding, 1); - eb->button = 2; + eb->button = 3; eb->mask = ECORE_X_EVENT_MASK_MOUSE_DOWN; eb->modifiers = ECORE_X_MODIFIER_ALT; eb->action = E_BINDING_ACTION_MENU;