idTech4.UI.idEditWindow.PostParse C# (CSharp) Méthode

PostParse() protected méthode

protected PostParse ( ) : void
Résultat void
		protected override void PostParse()
		{
			base.PostParse();

			if(_maxChars == 0)
			{
				_maxChars = 10;
			}

			if((_sourceFile != null) && (_sourceFile != string.Empty))
			{
				byte[] tmp = idE.FileSystem.ReadFile(_sourceFile);
				this.Text = Encoding.UTF8.GetString(tmp);
			}

			InitConsoleVariables();
			InitScroller(false);

			EnsureCursorVisible();

			this.Flags |= WindowFlags.CanFocus;
		}
		#endregion