summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Michael <cp.michael@samsung.com>2013-06-28 11:03:26 +0100
committerDeon Thomas <PrinceAMD.Elive@gmail.com>2013-06-28 11:24:51 -0400
commitee44bcda90d2a62f3e63397f43e9723c5f47967c (patch)
tree3b99a7c7fc63044b6d4ad056dba9b954fe34ab18
parent5e9323bf7d662854abd7dbfe7811bddea34d9bf3 (diff)
downloadenlightenment-ee44bcda90d2a62f3e63397f43e9723c5f47967c.tar.gz
Backport: 0537494 :: Fix issue of incorrect x/y position being displayed on a monitor after snapping.
Signed-off-by: Chris Michael <cp.michael@samsung.com> Signed-off-by: Deon Thomas <PrinceAMD.Elive@gmail.com>
-rw-r--r--src/modules/conf_randr/e_smart_monitor.c17
1 files changed, 8 insertions, 9 deletions
diff --git a/src/modules/conf_randr/e_smart_monitor.c b/src/modules/conf_randr/e_smart_monitor.c
index bd5af8446c..723872cc8d 100644
--- a/src/modules/conf_randr/e_smart_monitor.c
+++ b/src/modules/conf_randr/e_smart_monitor.c
@@ -1067,7 +1067,6 @@ static void
_e_smart_move(Evas_Object *obj, Evas_Coord x, Evas_Coord y)
{
E_Smart_Data *sd;
- Evas_Coord cx = 0, cy = 0;
LOGFN(__FILE__, __LINE__, __FUNCTION__);
@@ -1084,12 +1083,6 @@ _e_smart_move(Evas_Object *obj, Evas_Coord x, Evas_Coord y)
#ifdef BG_DBG
evas_object_move(sd->o_bg, x, y);
#endif
-
- /* convert position to virtual */
- _e_smart_monitor_coord_canvas_to_virtual(sd, sd->x, sd->y, &cx, &cy);
-
- /* set monitor position text */
- _e_smart_monitor_position_set(sd, cx, cy);
}
static void
@@ -1639,6 +1632,9 @@ _e_smart_monitor_thumb_cb_mouse_up(void *data, Evas *evas EINA_UNUSED, Evas_Obje
evas_object_grid_pack(sd->grid.obj, mon, sd->current.x, sd->current.y,
sd->current.w, sd->current.h);
+ /* set monitor position text */
+ _e_smart_monitor_position_set(sd, sd->current.x, sd->current.y);
+
/* update changes */
if ((sd->crtc.x != sd->current.x) || (sd->crtc.y != sd->current.y))
sd->changes |= E_SMART_MONITOR_CHANGED_POSITION;
@@ -2193,6 +2189,7 @@ _e_smart_monitor_move_event(E_Smart_Data *sd, Evas_Object *mon, void *event)
Evas_Event_Mouse_Move *ev;
Evas_Coord dx = 0, dy = 0;
Evas_Coord nx = 0, ny = 0;
+ Evas_Coord px = 0, py = 0;
Evas_Object *obj;
LOGFN(__FILE__, __LINE__, __FUNCTION__);
@@ -2221,8 +2218,10 @@ _e_smart_monitor_move_event(E_Smart_Data *sd, Evas_Object *mon, void *event)
evas_object_move(mon, nx, ny);
/* take current object position, translate to virtual */
- /* _e_smart_monitor_coord_canvas_to_virtual(sd, nx, ny, */
- /* &sd->current.x, &sd->current.y); */
+ _e_smart_monitor_coord_canvas_to_virtual(sd, nx, ny, &px, &py);
+
+ /* set monitor position text */
+ _e_smart_monitor_position_set(sd, px, py);
/* any objects below this monitor ? */
if ((obj = evas_object_below_get(mon)))