Kaydet (Commit) f82e6424 authored tarafından Caolán McNamara's avatar Caolán McNamara

only try gtk3 vclplug on >= 3.14

themeing has changed around quite a bit, and there's insufficient interest to
get older versions looking right

Change-Id: Ia2ee58d66c859e3bf00b54413fac1efb00d38dd3
üst ca5e9c62
...@@ -82,6 +82,12 @@ extern "C" ...@@ -82,6 +82,12 @@ extern "C"
XInitThreads(); XInitThreads();
#if GTK_CHECK_VERSION(3,0,0) #if GTK_CHECK_VERSION(3,0,0)
if (gtk_minor_version < 14)
{
g_warning("require a newer gtk than 3.%d for theme expectations", gtk_minor_version);
return NULL;
}
const gchar* pVersion = gtk_check_version( 3, 2, 0 ); const gchar* pVersion = gtk_check_version( 3, 2, 0 );
#else #else
const gchar* pVersion = gtk_check_version( 2, 2, 0 ); const gchar* pVersion = gtk_check_version( 2, 2, 0 );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment