all repos — tint2 @ 50a07df5d24dd950561a83c183162a7a79059738

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

Silence g_thread_init warning
o9000 o9000
commit

50a07df5d24dd950561a83c183162a7a79059738

parent

b3cdde78b1f0a0d532dcb5c15f07460618fc9a2d

1 files changed, 4 insertions(+), 1 deletions(-)

jump to
M src/tint2conf/main.csrc/tint2conf/main.c

@@ -132,7 +132,10 @@ GtkWidget *vBox = NULL, *scrollbar = NULL;

GtkActionGroup *actionGroup; gtk_init(&argc, &argv); - g_thread_init((NULL)); + +#if !GLIB_CHECK_VERSION(2, 31, 0) + g_thread_init(NULL); +#endif { gchar *tint2_config_dir = g_build_filename(g_get_user_config_dir(), "tint2", NULL);