mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
Support tabs in the file viewer text view.
This commit is contained in:
@@ -31,7 +31,7 @@ FileViewerWindow::FileViewerWindow(
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((c == '\n') || ((c >= 32) && (c <= 126)))
|
if ((c == '\n') || (c == '\t') || ((c >= 32) && (c <= 126)))
|
||||||
ss << (char)c;
|
ss << (char)c;
|
||||||
else if (c == '\r')
|
else if (c == '\r')
|
||||||
ss << '\n';
|
ss << '\n';
|
||||||
|
|||||||
Reference in New Issue
Block a user