[evince] shell: Fix interval for displaying the loading message



commit 0b248198ae7c8779abbf3b64c7ebcc38d95091fc
Author: Germán Poo-Caamaño <gpoo gnome org>
Date:   Sun May 31 16:17:28 2020 -0400

    shell: Fix interval for displaying the loading message
    
    Interval is a guint not double.

 shell/ev-window.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/shell/ev-window.c b/shell/ev-window.c
index 144c6f21..6c8919ed 100644
--- a/shell/ev-window.c
+++ b/shell/ev-window.c
@@ -840,7 +840,7 @@ ev_window_show_loading_message (EvWindow *window)
        if (priv->loading_message_timeout)
                return;
        priv->loading_message_timeout =
-               g_timeout_add_full (G_PRIORITY_LOW, 0.5, (GSourceFunc)show_loading_message_cb, window, NULL);
+               g_timeout_add_full (G_PRIORITY_LOW, 1, (GSourceFunc)show_loading_message_cb, window, NULL);
 }
 
 static void


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]