MonoDevelop.Components.Commands.CommandManager.EndWaitingForUserInteraction C# (CSharp) Method

EndWaitingForUserInteraction() private method

private EndWaitingForUserInteraction ( ) : void
return void
		void EndWaitingForUserInteraction ()
		{
			if (!waitingForUserInteraction)
				return;
			waitingForUserInteraction = false;
			foreach (var win in topLevelWindows) {
				win.MotionNotifyEvent -= HandleWinMotionNotifyEvent;
				win.FocusInEvent -= HandleFocusInEventHandler;
			}

			StartStatusUpdater ();
		}