From 24a8fba003efc9456dcaaeec17d4961aface0eb3 Mon Sep 17 00:00:00 2001 From: junkyu Han Date: Thu, 3 Mar 2016 16:38:57 +0900 Subject: [PATCH] Prevent rotate Change-Id: Ib508b1f04431914d20261763bc738e9e4de77421 --- src/animation.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/animation.c b/src/animation.c index 7fb4467..33bfa27 100644 --- a/src/animation.c +++ b/src/animation.c @@ -224,14 +224,13 @@ static int create_window(void) elm_win_indicator_mode_set(s_animation.win, ELM_WIN_INDICATOR_HIDE); evas_object_move(s_animation.win, 0, 0); - if (s_animation.w > s_animation.h) { +/* if (s_animation.w > s_animation.h) { int t; elm_win_rotation_with_resize_set(s_animation.win, 90); - /* Update geometry infomration */ t = s_animation.w; s_animation.w = s_animation.h; s_animation.h = t; - } + }*/ evas_object_show(s_animation.win); -- 2.7.4