elm_win fullscreen getter does not need a third case for an inclusive if/else

This commit is contained in:
Mike Blumenkrantz 2015-03-18 10:51:29 -04:00
parent dc01331903
commit 39a3a9a827
1 changed files with 1 additions and 6 deletions

View File

@ -3998,12 +3998,7 @@ _elm_win_fullscreen_get(Eo *obj EINA_UNUSED, Elm_Win_Data *sd)
// these engines... can ONLY be fullscreen
return EINA_TRUE;
}
else
{
return sd->fullscreen;
}
return EINA_FALSE;
return sd->fullscreen;
}
static void