diff --git a/src/modules/conf_randr/e_int_config_randr.c b/src/modules/conf_randr/e_int_config_randr.c index 5321bb08d..7171425b6 100644 --- a/src/modules/conf_randr/e_int_config_randr.c +++ b/src/modules/conf_randr/e_int_config_randr.c @@ -112,7 +112,6 @@ _randr_info_new(E_Container *con) /* create close button */ ob = e_widget_button_add(evas, _("Close"), NULL, _close_cb_click, info->win, NULL); -// e_widget_on_focus_hook_set(ob, _close_cb_focus, win); e_widget_size_min_get(ob, &mw, &mh); edje_extern_object_min_size_set(ob, mw, mh); edje_object_part_swallow(info->o_bg, "e.swallow.button", ob); diff --git a/src/modules/conf_randr/e_smart_monitor.c b/src/modules/conf_randr/e_smart_monitor.c index 587c0b732..c645d3d03 100644 --- a/src/modules/conf_randr/e_smart_monitor.c +++ b/src/modules/conf_randr/e_smart_monitor.c @@ -965,7 +965,7 @@ _e_smart_monitor_rotate_snap(Evas_Object *obj) /* tell randr widget we rotated this monitor so that it can * update the layout for any monitors around this one */ - /* evas_object_smart_callback_call(mon, "monitor_rotated", NULL); */ + evas_object_smart_callback_call(mon, "monitor_rotated", NULL); } static void @@ -1079,6 +1079,8 @@ _e_smart_monitor_move(E_Smart_Data *sd, Evas_Object *mon, void *event) if ((gx != nx) || (gy != ny)) e_layout_child_move(mon, nx, ny); + evas_object_smart_callback_call(mon, "monitor_moved", NULL); + /* Hmm, this below code worked also ... and seems lighter. * but the above code seems more "proper". * Which to use ?? */