diff options
author | rbuj <[email protected]> | 2020-08-01 23:54:20 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-08-31 12:33:33 +0200 |
commit | 69f1e80f5e1efe7d9229a6f8200d1107527975af (patch) | |
tree | 7827ec56f055058bf1c3dc1c5fcc0f09221756ce | |
parent | 4aa550192c0484bb61223cb4fc0e8be830bc5fe0 (diff) | |
download | atril-69f1e80f5e1efe7d9229a6f8200d1107527975af.tar.bz2 atril-69f1e80f5e1efe7d9229a6f8200d1107527975af.tar.xz |
ev-window: fix interval (guint milliseconds) in g_timeout_add_full
-rw-r--r-- | shell/ev-window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ev-window.c b/shell/ev-window.c index 0159ace0..a466bffa 100644 --- a/shell/ev-window.c +++ b/shell/ev-window.c @@ -899,7 +899,7 @@ ev_window_show_loading_message (EvWindow *window) if (window->priv->loading_message_timeout) return; window->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, 500, (GSourceFunc)show_loading_message_cb, window, NULL); } static void |