From 3690b899c57576d15811a552e223362fb3526f37 Mon Sep 17 00:00:00 2001 From: Dustin Falgout Date: Sat, 24 Dec 2016 14:52:51 -0600 Subject: [PATCH] increase timeout for theme loaded check (working on #98) --- src/greeter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/greeter.c b/src/greeter.c index 94f64a9..dfe4a10 100644 --- a/src/greeter.c +++ b/src/greeter.c @@ -478,7 +478,7 @@ main(int argc, char **argv) { g_signal_connect(WEBKIT_WEB_VIEW(web_view), "context-menu", G_CALLBACK(context_menu_cb), NULL); /* Register callback to check if theme loaded successfully */ - g_timeout_add_seconds(5, (GSourceFunc) maybe_show_theme_fallback_dialog, NULL); + g_timeout_add_seconds(10, (GSourceFunc) maybe_show_theme_fallback_dialog, NULL); /* There's no turning back now, let's go! */ gtk_container_add(GTK_CONTAINER(window), web_view);