bxgaillard commented on this pull request.
> @@ -287,8 +288,13 @@ void dpaned_init(void)
/* setup notebooks */
gtk_notebook_set_scrollable(GTK_NOTEBOOK(debug_notebook_left), TRUE);
gtk_notebook_set_scrollable(GTK_NOTEBOOK(debug_notebook_right), TRUE);
+#if GTK_CHECK_VERSION(3, 0, 0)
+ gtk_notebook_set_group_name(GTK_NOTEBOOK(debug_notebook_left),
NOTEBOOK_GROUP_NAME(NOTEBOOK_GROUP));
+ gtk_notebook_set_group_name(GTK_NOTEBOOK(debug_notebook_right),
NOTEBOOK_GROUP_NAME(NOTEBOOK_GROUP));
+#else
I agree. Fixed.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/pull/791#discussion_r236291938