For a rather long time now, elsa showed only black screen (cf. Ticket
#967). I seemed now to be able to narrow down the problem.
 In elsa/src/bin/elsa_gui.c line 366 (revision 69451)
        i = ecore_x_xinerama_screen_count_get();
 i is set to 0 when xinerama is not enabled (as in my case). Therefore
the following loop over all available screens (ll. 367-397) is skipped,
but this code is responsible for the setup of the gui. I inserted
        if (i == 0)
          i=1;
between lines 396 and 367 making sure the loop body will be executed at
least once.
 After that I got a non black screen: The background was rendered
correctly, but the gui elements were not present or unusable. elsa.log
showed some lines like
        ERR<3111>:edje edje_external.c:378 _edje_external_type_add()
        external type 'elm/gengrid' not registered
(similar lines for hoversel and entry)
As far as I can judge elsa's beaumonts theme seems to be outdated. But
to fix a theme is beyond my current understanding of elementary.
 I would like to see elsa up and running again and hope my hints are
useful.
 Best regards
        Christian Apeltauer

------------------------------------------------------------------------------
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to