Changing keyboard layout on latest e-17 caused the illume keyboard to
grow infinitely in horizontal size like shown in this shot: [1].
This one-line patch fixes the issue.

Bye ;)

[1] http://linux.fjfi.cvut.cz/~zub/SHR/key-sizing.png
Index: e/src/modules/illume-keyboard/e_kbd_int.c
===================================================================
--- e/src/modules/illume-keyboard/e_kbd_int.c	(revisione 54704)
+++ e/src/modules/illume-keyboard/e_kbd_int.c	(copia locale)
@@ -999,6 +999,7 @@
    edje_object_part_geometry_get(ki->base_obj, "e.swallow.content", NULL, NULL, &lw, &lh);
    lh = (ki->layout.h * lw) / ki->layout.w;
    edje_extern_object_min_size_set(ki->layout_obj, lw, lh);
+   edje_extern_object_max_size_set(ki->layout_obj, ki->win->w, ki->win->h);
    edje_object_part_swallow(ki->base_obj, "e.swallow.content", ki->layout_obj);
 
    EINA_LIST_FOREACH(ki->layout.keys, l, ky)
------------------------------------------------------------------------------
Beautiful is writing same markup. Internet Explorer 9 supports
standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2 & L3.
Spend less time writing and  rewriting code and more time creating great
experiences on the web. Be a part of the beta today
http://p.sf.net/sfu/msIE9-sfdev2dev
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to