[E-devel] Question about elm_genlist.c:_item_block_unrealize()

2010-03-22 Thread Brian Wang
Hello all, In elm_genlist.c:_item_block_unrealize(), _item_unrealize() may be skipped if it->dragging. My question is: What's the reason for skipping it if it's being dragged? I commented out the "if (it->dragging) ..." part, and the "residual image" problem is gone. But I don't know if there's

Re: [E-devel] bluetooth module, E segfault

2010-03-22 Thread mirandir
Le lundi 22 mars 2010 à 14:23 -0300, Gustavo Sverzut Barbieri a écrit :. > > Hi Valentin, > > Gustavo Padovan, the author of the module, fixed the bug and I > committed it to SVN. Please confirm it is fixed for you. Hi Gustavo, With this patch, E don't segfaults when I load the module. But, it

Re: [E-devel] bluetooth module, E segfault

2010-03-22 Thread Gustavo Sverzut Barbieri
On Sat, Mar 20, 2010 at 6:38 AM, Valentin Brault wrote: > Hi, > > It seems the new bluetooth module crashs E17 if no bluetooth device is > detected on the computer. Hi Valentin, Gustavo Padovan, the author of the module, fixed the bug and I committed it to SVN. Please confirm it is fixed for you

Re: [E-devel] [PATCH] Fix crash on ebluez

2010-03-22 Thread Gustavo Sverzut Barbieri
On Mon, Mar 22, 2010 at 2:14 PM, Gustavo F. Padovan wrote: > --- >  src/modules/bluez/e_mod_main.c |    6 ++ >  1 files changed, 6 insertions(+), 0 deletions(-) > > diff --git a/src/modules/bluez/e_mod_main.c b/src/modules/bluez/e_mod_main.c > index 6fdf521..8b24ee5 100644 > --- a/src/modules/

[E-devel] [PATCH] Fix crash on ebluez

2010-03-22 Thread Gustavo F. Padovan
--- src/modules/bluez/e_mod_main.c |6 ++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/src/modules/bluez/e_mod_main.c b/src/modules/bluez/e_mod_main.c index 6fdf521..8b24ee5 100644 --- a/src/modules/bluez/e_mod_main.c +++ b/src/modules/bluez/e_mod_main.c @@ -1123,6 +1123,

Re: [E-devel] [PATCH] markup entry problem

2010-03-22 Thread Gustavo Sverzut Barbieri
On Mon, Mar 22, 2010 at 8:47 AM, Carsten Haitzler wrote: > On Mon, 22 Mar 2010 07:37:25 -0300 Gustavo Sverzut Barbieri > said: > >> > hmm no... elm entry deals with text as markup - thus " gets escaped as >> > html-style " stuff. you want to use elm_entry_markup_to_utf8() to take >> > the markup

Re: [E-devel] [PATCH] markup entry problem

2010-03-22 Thread The Rasterman
On Mon, 22 Mar 2010 07:37:25 -0300 Gustavo Sverzut Barbieri said: > > hmm no... elm entry deals with text as markup - thus " gets escaped as > > html-style " stuff. you want to use elm_entry_markup_to_utf8() to take > > the markup - formatting and all, and get you "plain text". it will give u > >

Re: [E-devel] [PATCH] markup entry problem

2010-03-22 Thread Gustavo Sverzut Barbieri
On Mon, Mar 22, 2010 at 2:52 AM, Carsten Haitzler wrote: > On Mon, 22 Mar 2010 00:52:40 -0300 Fabiano Fidêncio > said: > >> Hi Guys :-) >> >> I was written: >> 0'0" >> in an Entry and the output was: >> 0'0" >> >> I think so that this 2 would solve it. >> >> Can someone take a look? > > hmm no...