mirror of
https://github.com/QL-Win/QuickLook.git
synced 2026-05-08 03:06:29 +08:00
Add .jsonl syntax highlighting support to TextViewer (#1906)
This commit is contained in:
@@ -163,9 +163,9 @@ public partial class TextViewerPanel : TextEditor, IDisposable
|
||||
// RTL: Ctrl + RShift
|
||||
// LTR: Ctrl + LShift
|
||||
if (Keyboard.IsKeyDown(Key.RightShift))
|
||||
FlowDirection = System.Windows.FlowDirection.RightToLeft;
|
||||
FlowDirection = FlowDirection.RightToLeft;
|
||||
else if (Keyboard.IsKeyDown(Key.LeftShift))
|
||||
FlowDirection = System.Windows.FlowDirection.LeftToRight;
|
||||
FlowDirection = FlowDirection.LeftToRight;
|
||||
}
|
||||
else if (Keyboard.IsKeyDown(Key.LeftAlt) || Keyboard.IsKeyDown(Key.RightAlt))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user