replace/remove background image on gimp 2.6.11

5

1

How do I remove these images by compiling gimp from source?

I can't find any file containing these images.

alt text

zabesh

Posted 2010-10-28T23:18:19.787

Reputation:

It is said that there are pixbuf headers in gimp source (gimp-stock-pixbufs.h,gimp-wilber-pixbufs.h, and gimp-core-pixbufs.h). but i can't imagine how they are being displayed. – None – 2010-10-29T00:05:31.210

Even though I now prefer SO to mailing lists I guess you might get an answer sooner on the Gimp developer mailing list

– Bram – 2012-05-12T09:36:28.430

1gimprc has a property called toolbox-wilber which you can set to no to remove the mascot from the top of the toolbox. Perhaps you can grep the source tree for that and gain some insight or even discover an undocumented config option ;) – koniu – 2012-06-26T01:05:14.767

Answers

1

They are hiding in /app/widgets/gimpcairo.c at line 140 to the end of the file.

You should be able to comment out the contents of those functions.

If you want to get rid of the space where it uses to draw the toolbox one you can look at these lines.

Tamara Wijsman

Posted 2010-10-28T23:18:19.787

Reputation: 54 163