Name
UI::CheckShortcuts — Perform an explicit shortcut check after postponing shortcut checks.
Synopsis
void
CheckShortcuts
( | void) ; | |
Description
Perform an explicit shortcut check after postponing shortcut checks. Use this after calling PostponeShortcutCheck().
The normal sequence looks like this:
PostponeShortcutChecks();
ReplaceWidget( ... );
ReplaceWidget( ... );
...
ReplaceWidget( ... );
CheckShortcuts();
...
UserInput(); |