From 551b576a4be545f970460598d74add9a9c608bfc Mon Sep 17 00:00:00 2001 From: Christopher Michael Date: Mon, 17 Dec 2012 09:20:17 +0000 Subject: [PATCH] Don't set mouse pointer to "move" if this is a cloned monitor. Signed-off-by: Christopher Michael SVN revision: 81096 --- src/modules/conf_randr/e_smart_monitor.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/modules/conf_randr/e_smart_monitor.c b/src/modules/conf_randr/e_smart_monitor.c index f1cd081a6..b75b52b40 100644 --- a/src/modules/conf_randr/e_smart_monitor.c +++ b/src/modules/conf_randr/e_smart_monitor.c @@ -1807,13 +1807,13 @@ _e_smart_monitor_thumb_cb_mouse_down(void *data, Evas *evas EINA_UNUSED, Evas_Ob if (!(mon = data)) return; if (!(sd = evas_object_smart_data_get(mon))) return; - /* try to set the mouse pointer to indicate moving */ - if ((man = e_manager_current_get())) - e_pointer_type_push(man->pointer, obj, "move"); - /* if this event is not on a cloned monitor */ if (!sd->cloned) { + /* try to set the mouse pointer to indicate moving */ + if ((man = e_manager_current_get())) + e_pointer_type_push(man->pointer, obj, "move"); + /* set moving flag */ sd->moving = EINA_TRUE;