How to fix scrollBar after resize? #1109
Answered
by
BDisp
opadfnezig
asked this question in
Q&A
-
Beta Was this translation helpful? Give feedback.
Answered by
BDisp
Feb 12, 2021
Replies: 1 comment 3 replies
-
The |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
opadfnezig
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The
demo.cs
is slow because it is usingApplication.UseSystemConsole
and thus usingNetDriver
. If you comment that line it will useWindowsDriver
if you are running on aWindows 10
or will useNCurses
if you are runningLinux
.If you want to avoid the scrollbar from appearing, you must disable
Height as Buffer
on theDiagnostic
menu. However, there is a bug that preventing the size not fit correctly on the console. A possible fix is on PR #1066.