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