A small patch for the start module: instead of hardcoding the size of the shell icon/button, get it from the theme.
regards, Peter van de Werken -- Live in a world of your own, but always welcome visitors.
Index: apps/e/src/modules/start/e_mod_main.c
===================================================================
RCS file: /var/cvs/e/e17/apps/e/src/modules/start/e_mod_main.c,v
retrieving revision 1.42
diff -u -r1.42 e_mod_main.c
--- apps/e/src/modules/start/e_mod_main.c 31 Oct 2007 12:23:15 -0000 1.42
+++ apps/e/src/modules/start/e_mod_main.c 29 Feb 2008 10:12:45 -0000
@@ -91,10 +91,11 @@
_gc_orient(E_Gadcon_Client *gcc)
{
Instance *inst;
+ Evas_Coord mw, mh;
inst = gcc->data;
- e_gadcon_client_aspect_set(gcc, 16, 16);
- e_gadcon_client_min_size_set(gcc, 16, 16);
+ edje_object_size_min_calc (inst->o_button, &mw, &mh);
+ e_gadcon_client_min_size_set (gcc, mw, mh);
}
static char *
signature.asc
Description: Digital signature
------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________ enlightenment-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
