ACAT.Lib.Extension.AlphabetScannerCommon.OnResume C# (CSharp) Method

OnResume() public method

Resumes the application. Call this in the OnResume function in the Alphabet scanner.
public OnResume ( ) : void
return void
        public void OnResume()
        {
            Log.Debug();

            _scannerCommon.GetAnimationManager().Resume();

            _scannerCommon.ShowScanner();

            refreshWordPredictionsAndSetCurrentWord();

            if (!_scannerCommon.DialogMode)
            {
                _scannerCommon.OnResume();

                _scannerCommon.KeepTalkWindowActive = false;
            }
        }