Thread: [ubuntu] GTK2 Engine error
View Single Post
Old November 8th, 2008   #4
Ivo Moelans
Gee! These Aren't Roasted!
 
Ivo Moelans's Avatar
 
Join Date: Feb 2007
Location: Antwerp, Belgium
Beans: 165
Ubuntu 9.10 Karmic Koala
Re: GTK2 Engine error

Look in the theme's gtkrc file for empty engine-tags. These are commonly used in style "unstyle" which is meant to prevent Sodipodi from crashing while opening the Object-Style dialog.

Code:
style "unstyle"
{
	engine ""
	{
	}
}
Fill the "" with a 'known' engine, e.g. pixmap, so that the code looks like this:

Code:
style "unstyle"
{
	engine "pixmap"
	{
	}
}
This should correct the problem.
Ivo Moelans is offline   Reply With Quote