summaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorraveit65 <[email protected]>2016-05-07 14:16:59 +0200
committerraveit65 <[email protected]>2016-06-02 16:46:26 +0200
commit3a54b21cbb30473ae1773c8ff66eacde5e07d69f (patch)
tree12473560dedec5350e66a38badc284611abfdc12 /shell
parent4a27a82e76d80e5d59a3e277345c5f5907a56268 (diff)
downloadatril-3a54b21cbb30473ae1773c8ff66eacde5e07d69f.tar.bz2
atril-3a54b21cbb30473ae1773c8ff66eacde5e07d69f.tar.xz
Add a setting to disable auto-reload
https://bugzilla.gnome.org/show_bug.cgi?id=669265 taken from: https://git.gnome.org/browse/evince/commit/shell/ev-window.c?h=gnome-3-6&id=a5a0f6
Diffstat (limited to 'shell')
-rw-r--r--shell/ev-window.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/shell/ev-window.c b/shell/ev-window.c
index 8a4553e4..180ce3a5 100644
--- a/shell/ev-window.c
+++ b/shell/ev-window.c
@@ -253,6 +253,7 @@ struct _EvWindowPrivate {
#define GS_SCHEMA_NAME "org.mate.Atril"
#define GS_OVERRIDE_RESTRICTIONS "override-restrictions"
+#define GS_AUTO_RELOAD "auto-reload"
#define SIDEBAR_DEFAULT_SIZE 132
#define LINKS_SIDEBAR_ID "links"
@@ -1629,7 +1630,9 @@ static void
ev_window_document_changed (EvWindow *ev_window,
gpointer user_data)
{
- ev_window_reload_document (ev_window, NULL);
+ if (ev_window->priv->settings &&
+ g_settings_get_boolean (ev_window->priv->settings, GS_AUTO_RELOAD))
+ ev_window_reload_document (ev_window, NULL);
}
static void