Fix crash in non-rapid link yanking

This commit is contained in:
rr- 2018-04-16 08:52:06 +02:00
parent d705e600e2
commit 563d9bd097

View File

@ -922,7 +922,8 @@ class HintManager(QObject):
except HintingError as e:
message.error(str(e))
self._context.first_run = False
if self._context is not None:
self._context.first_run = False
@cmdutils.register(instance='hintmanager', scope='tab',
modes=[usertypes.KeyMode.hint])