summaryrefslogtreecommitdiff
path: root/src/input_handler.cc
diff options
context:
space:
mode:
authorMaxime Coste <mawww@kakoune.org>2016-12-05 23:40:23 +0000
committerMaxime Coste <mawww@kakoune.org>2016-12-05 23:40:23 +0000
commitb3ac733f332a753be2fc575328d38017f31d0a00 (patch)
treeafcf0470c7285d36df65991d1803969943673617 /src/input_handler.cc
parent9a986b8d47a8de44faf94feb32a2ba5788319729 (diff)
Fix buffer reload info box not being shown anymore
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 bc0e6c81..6aaefb61 100644
--- a/src/input_handler.cc
+++ b/src/input_handler.cc
@@ -168,8 +168,8 @@ public:
if (context().has_client())
{
- context().client().check_if_buffer_needs_reloading();
context().client().info_hide();
+ context().client().check_if_buffer_needs_reloading();
}
m_fs_check_timer.set_next_date(Clock::now() + get_fs_check_timeout(context()));