Fix case where a context ends up locked in no-hooks mode

This commit is contained in:
Maxime Coste 2014-11-12 20:31:12 +00:00
parent fab9c92006
commit 3f733569ed

View File

@ -102,10 +102,13 @@ public:
else if (key == Key::Backspace)
m_count /= 10;
else if (key == '\\')
{
if (not m_hooks_disabled)
{
m_hooks_disabled = true;
context().disable_user_hooks();
}
}
else
{
if (m_hooks_disabled)