summaryrefslogtreecommitdiff
path: root/src/input_handler.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/input_handler.cc')
-rw-r--r--src/input_handler.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input_handler.cc b/src/input_handler.cc
index 354fa973..c0d1c11f 100644
--- a/src/input_handler.cc
+++ b/src/input_handler.cc
@@ -64,7 +64,7 @@ public:
Timer::Callback() : Timer::Callback([this](Timer& timer) {
if (not context().has_client())
return;
- context().client().check_buffer_fs_timestamp();
+ context().client().check_if_buffer_needs_reloading();
timer.set_next_date(Clock::now() + fs_check_timeout);
})}
{}