Adjusting cursor size ... working under WindowsDriver

This commit is contained in:
Gilles Freart
2021-01-27 21:51:07 +01:00
parent 77add786fc
commit 9b617a07f0
26 changed files with 430 additions and 5 deletions

View File

@@ -248,5 +248,13 @@ namespace Terminal.Gui {
}
base.PositionCursor ();
}
///<inheritdoc/>
public override bool OnEnter (View view)
{
Application.Driver.SetCursorVisibility (CursorVisibility.Invisible);
return base.OnEnter (view);
}
}
}