Don't set mouse pointer to "move" if this is a cloned monitor.

Signed-off-by: Christopher Michael <cp.michael@samsung.com>

SVN revision: 81096
This commit is contained in:
Christopher Michael 2012-12-17 09:20:17 +00:00 committed by Christopher Michael
parent 690fe7a419
commit 551b576a4b
1 changed files with 4 additions and 4 deletions

View File

@ -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;