elm_win: Formatting

SVN revision: 75558
This commit is contained in:
Eduardo de Barros Lima 2012-08-22 19:55:20 +00:00
parent 8f4fc356f7
commit 45dbb295aa
1 changed files with 6 additions and 9 deletions

View File

@ -2566,9 +2566,8 @@ elm_win_add(Evas_Object *parent,
{ {
TRAP(sd, fullscreen_set, 1); TRAP(sd, fullscreen_set, 1);
} }
else if (ENGINE_COMPARE(ELM_WAYLAND_SHM)) else if (ENGINE_COMPARE(ELM_WAYLAND_SHM) ||
_elm_win_frame_add(sd, "default"); ENGINE_COMPARE(ELM_WAYLAND_EGL))
else if (ENGINE_COMPARE(ELM_WAYLAND_EGL))
_elm_win_frame_add(sd, "default"); _elm_win_frame_add(sd, "default");
if (_elm_config->focus_highlight_enable) if (_elm_config->focus_highlight_enable)
@ -2990,16 +2989,14 @@ elm_win_fullscreen_set(Evas_Object *obj,
if (fullscreen) if (fullscreen)
{ {
if (ENGINE_COMPARE(ELM_WAYLAND_SHM)) if (ENGINE_COMPARE(ELM_WAYLAND_SHM) ||
_elm_win_frame_del(sd); ENGINE_COMPARE(ELM_WAYLAND_EGL))
else if (ENGINE_COMPARE(ELM_WAYLAND_EGL))
_elm_win_frame_del(sd); _elm_win_frame_del(sd);
} }
else else
{ {
if (ENGINE_COMPARE(ELM_WAYLAND_SHM)) if (ENGINE_COMPARE(ELM_WAYLAND_SHM) ||
_elm_win_frame_add(sd, "default"); ENGINE_COMPARE(ELM_WAYLAND_EGL))
else if (ENGINE_COMPARE(ELM_WAYLAND_EGL))
_elm_win_frame_add(sd, "default"); _elm_win_frame_add(sd, "default");
evas_object_show(sd->frame_obj); evas_object_show(sd->frame_obj);