Browse Source
Merge pull request #23 from lhiginbotham/fix-issue-22
Render tabs in the text viewer
pull/9/head
Igor Velikorossov
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
Project/Src/Gui/TextView.cs
|
|
@ -633,7 +633,7 @@ namespace ICSharpCode.TextEditor |
|
|
|
// Important: Some flags combinations work on WinXP, but not on Win2000.
|
|
|
|
// Make sure to test changes here on all operating systems.
|
|
|
|
private const TextFormatFlags textFormatFlags = |
|
|
|
TextFormatFlags.NoPadding | TextFormatFlags.NoPrefix | TextFormatFlags.PreserveGraphicsClipping; |
|
|
|
TextFormatFlags.NoPadding | TextFormatFlags.NoPrefix | TextFormatFlags.PreserveGraphicsClipping | TextFormatFlags.ExpandTabs; |
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|