Skip to content
Snippets Groups Projects
Commit 8c04927e authored by Sean Davis's avatar Sean Davis
Browse files

Resolve hidden libxfce4ui 4.13 requirement (bug #14821)

parent f1b1f252
No related branches found
No related tags found
No related merge requests found
0.1.2 (alpha) (UNRELEASED)
=============
- Bug Fixes:
- Resolve hidden libxfce4ui 4.13 requirement (Xfce #14821)
0.1.1 (alpha)
=============
- General:
......
......@@ -1775,7 +1775,15 @@ main (int argc,
/* Get plug child widget */
plug_child = gtk_builder_get_object (builder, "plug-child");
#if LIBXFCE4UI_CHECK_VERSION (4, 13, 2)
xfce_widget_reparent (GTK_WIDGET(plug_child), plug);
#else
G_GNUC_BEGIN_IGNORE_DEPRECATIONS /* GTK 3.14 */
gtk_widget_reparent (dialog->content_box, dialog->vbox);
G_GNUC_END_IGNORE_DEPRECATIONS
#endif
gtk_widget_show_all (GTK_WIDGET(plug_child));
/* To prevent the settings dialog to be saved in the session */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment