From: Seunghun Lee Date: Fri, 26 Apr 2013 10:19:18 +0000 (+0900) Subject: Modify to compare angle that comming from client by rotation done message with BORDER... X-Git-Tag: 2.1b_release^0 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fe17.git;a=commitdiff_plain;h=3b81328d7375e4dc55dd9546a00737fdb45df217;hp=f85baebda8ac5f1b096bc5f83c5c12096e288caf Modify to compare angle that comming from client by rotation done message with BORDER's angle. Since originally code compared angle from client with ZONE's angle, WM's rotation done logic couldn't be processed, when client has to rotate landscape state by setting preffered rotation under device is in portrait. Change-Id: Ic1b687caa93d842810bb013fd7eb65104bfed65c --- diff --git a/src/bin/e_border.c b/src/bin/e_border.c index b77269c..c94f0c8 100644 --- a/src/bin/e_border.c +++ b/src/bin/e_border.c @@ -6774,7 +6774,7 @@ _e_border_cb_client_message(void *data __UNUSED__, if (e_config->wm_win_rotation) { - if ((int)e->data.l[1] == bd->zone->rot.curr) + if ((int)e->data.l[1] == bd->client.e.state.rot.curr) _e_border_rotation_list_remove(bd); } }