Vincent Francois <vincentfrancois DOT pro AT gmail DOT com>

Hello,

I use the French version of Enlightenment v16.999.060.

When I want to change the appearance of an icon by "File Properties ->
Icon custom -> Select An Image", the window is not displayed
correctly.

I will link to the image of the window you know it.

http://img209.imageshack.us/img209/8035/badwindow.png

I solved the problem by modifying the file /trunk/e/src/bin/e_fm_prop.c (SVN)

In the function :

static void
_cb_icon_sel(void *data, void *data2)

A line 517 and 518, I switched e_dialog_show(dia); and
e_win_resize(dia->win, 475, 341);

Example:

static void
_cb_icon_sel(void *data, void *data2)
{
...
e_win_centered_set(dia->win, 1);
/*** OLD CODE ***
e_dialog_show(dia);
e_win_resize(dia->win, 475, 341);
**********************/

/***** NEW CODE ***/
e_win_resize(dia->win, 475, 341);
e_dialog_show(dia);
/************************/

cfdata->gui.fsel = dia;
}

FOR INFORMATION, this problem does not appears  in the "English"
version. For this, selecting in the French language.

Here I hope to have helped.

------------------------------------------------------------------------------
OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
looking to deploy the next generation of Solaris that includes the latest 
innovations from Sun and the OpenSource community. Download a copy and 
enjoy capabilities such as Networking, Storage and Virtualization. 
Go to: http://p.sf.net/sfu/opensolaris-get
_______________________________________________
enlightenment-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to