Re: [Gimp-developer] Two notes for UI (inconsistency and cleanup)

2007-10-19 Thread Vladimir Savic
On Friday 19 October 2007 07:57:26 pm Nemes Ioan Sorin wrote: > Vladimir, > > things are in change, nothing can be done over night. I'm aware of that. I didn't want to sound like pushing someone to do something. If I did, then sorry... (but I'm not even in position for doing things like that) >

[Gimp-developer] Two notes for UI (inconsistency and cleanup)

2007-10-19 Thread Vladimir Savic
As I can see, GIMP UI is undergoing some minor cleanups in svn version. Just two observations. Nothing major. :) I've noticed that only Smudge Tool doesn't have brush scaling, which is just inconsistent to to other tools. And second one is about Pressure sensitivity. Opening that tab could align

Re: [Gimp-developer] Two notes for UI (inconsistency and cleanup)

2007-10-19 Thread Nemes Ioan Sorin
Vladimir, things are in change, nothing can be done over night. I found a lot of ...let say "...here could be better" in few areas - but I prepare my material and my studies for the guys which work right now for GIMP UI redesign. Please consider following links: http://gimp-brainstorm.blogspo

Re: [Gimp-developer] calling a procedure in a plugin

2007-10-19 Thread Giuseppe Pasquino
Thanks to all... Now it's work... >> You are attempting to modify a color at some random memory location, that's >> never been allocated (you didn't initialize colore) and then you passed >> this dodgy pointer to gimp_by_color_select. In most parts of the GIMP, >> GimpRGB are statically allo

Re: [Gimp-developer] calling a procedure in a plugin

2007-10-19 Thread Giuseppe Pasquino
I have modified the code as you suggested: GimpRGB *colore; GimpChannelOps parametri; gboolean success; gimp_rgb_set_uchar(colore, pixel[0], pixel[1], pixel[2]); parametri = GIMP_CHANNEL_OP_REPLACE; success = gimp_by_color_select(drawable->drawable_

Re: [Gimp-developer] calling a procedure in a plugin

2007-10-19 Thread David Gowers
On 10/19/07, Giuseppe Pasquino <[EMAIL PROTECTED]> wrote: > > I have modified the code as you suggested: > > GimpRGB *colore; > GimpChannelOps parametri; > gboolean success; > gimp_rgb_set_uchar(colore, pixel[0], pixel[1], pixel[2]); > parametri = GIMP_CHANNE