From efe21586c2ecb08d72f2ccd85dd1ef5980dc72c8 Mon Sep 17 00:00:00 2001 From: Ox Cart Date: Fri, 20 Sep 2019 11:17:09 -0500 Subject: [PATCH] More linux fixes for app window --- systray_browser_linux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systray_browser_linux.c b/systray_browser_linux.c index cff51c3..b32646c 100644 --- a/systray_browser_linux.c +++ b/systray_browser_linux.c @@ -57,6 +57,6 @@ void showAppWindow(char* url) // Load a web page into the browser instance webkit_web_view_load_uri(web_view, url); - gdk_threads_add_idle(do_show_app_window, NULL); + g_idle_add(do_show_app_window, NULL); free(url); } \ No newline at end of file