diff options
author | monsta <[email protected]> | 2016-04-05 13:19:23 +0300 |
---|---|---|
committer | monsta <[email protected]> | 2016-04-05 13:19:23 +0300 |
commit | 69ccd97dc83bef09c73cfbc9c1ae1ecd7ca2e2f6 (patch) | |
tree | 9b888da1c20f8978baa00e3058816b9b7ea7b63b | |
parent | a218f22298cd15f5e94bd717189876d6bdfcfd1f (diff) | |
download | atril-69ccd97dc83bef09c73cfbc9c1ae1ecd7ca2e2f6.tar.bz2 atril-69ccd97dc83bef09c73cfbc9c1ae1ecd7ca2e2f6.tar.xz |
check for GTK+3 stable release, not development one
-rw-r--r-- | cut-n-paste/toolbar-editor/egg-toolbar-editor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cut-n-paste/toolbar-editor/egg-toolbar-editor.c b/cut-n-paste/toolbar-editor/egg-toolbar-editor.c index 9c28b349..9f699480 100644 --- a/cut-n-paste/toolbar-editor/egg-toolbar-editor.c +++ b/cut-n-paste/toolbar-editor/egg-toolbar-editor.c @@ -265,7 +265,7 @@ egg_toolbar_editor_class_init (EggToolbarEditorClass *klass) G_PARAM_READWRITE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB | G_PARAM_CONSTRUCT)); -#if GTK_CHECK_VERSION (3, 19, 0) +#if GTK_CHECK_VERSION (3, 20, 0) GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass); gtk_widget_class_set_css_name (widget_class, "EggToolbarEditor"); #endif |