Skip to content
This repository has been archived by the owner on Jul 1, 2024. It is now read-only.

Commit

Permalink
bin: Fix blank screen on start under EFL 1.21 , issue #30 and issue #33
Browse files Browse the repository at this point in the history
A HUGE thanks to Raffaele/@rafspiny for locating the commit that
introduced a change in API and also for identifying a possible solution.
#33 (comment)

Fixes #30
#30

Fixes #33
#33
  • Loading branch information
wltjr committed Nov 27, 2018
1 parent daa3661 commit 0e9596e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/bin/entrance_gui.c
Original file line number Diff line number Diff line change
Expand Up @@ -175,8 175,9 @@ entrance_gui_init(const char *theme)
evas_object_show(_gui->win);
/* tricky situation. we are not normally running with a wm and thus
* have to set focus to our window so things work right */
ecore_evas_focus_set
(ecore_evas_ecore_evas_get(evas_object_evas_get(_gui->win)), 1);
Ecore_Evas *ee = ecore_evas_ecore_evas_get(evas_object_evas_get(_gui->win));
ecore_evas_override_set(ee,EINA_TRUE);
ecore_evas_focus_set(ee, 1);
/* need to hide and show the cursor */
ecore_x_window_cursor_show(elm_win_xwindow_get(_gui->win),
EINA_FALSE);
Expand Down

0 comments on commit 0e9596e

Please sign in to comment.