You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To draw we shouldn't use the clipped parameter as true by default, otherwise View methods like Clear, which use the Move will clearing wrong area. The clipped parameter should only be used as true for cursor purpose if we want it always visible on the screen boundary, but never to draw views.
For that reason this method always call the ViewToScreen with the parameter clipped as false. If we want the cursor always visible the we use the clipped as true when the cursor is updating and not redrawing, otherwise the output will be corrupted.
The text was updated successfully, but these errors were encountered:
BDisp
added a commit
to BDisp/Terminal.Gui
that referenced
this issue
Jun 16, 2023
To draw we shouldn't use the
clipped
parameter as true by default, otherwiseView
methods likeClear
, which use theMove
will clearing wrong area. Theclipped
parameter should only be used as true for cursor purpose if we want it always visible on the screen boundary, but never to draw views.For that reason this method always call the
ViewToScreen
with the parameter clipped as false. If we want the cursor always visible the we use the clipped as true when the cursor is updating and not redrawing, otherwise the output will be corrupted.The text was updated successfully, but these errors were encountered: