Put scrollbars on the side of screen, not middle.
- Left editor's vertical scrollbar on the left
This commit is contained in:
parent
2504dd0cff
commit
9f4d13cd20
1 changed files with 1 additions and 1 deletions
|
|
@ -130,7 +130,7 @@ class DiffEditor:
|
||||||
def __init__(self, left_path, right_path):
|
def __init__(self, left_path, right_path):
|
||||||
self.left_editor = editor.Editor(is_right_aligned=True)
|
self.left_editor = editor.Editor(is_right_aligned=True)
|
||||||
self.left_editor.load(left_path)
|
self.left_editor.load(left_path)
|
||||||
self.left_editor.view_widget.is_scrollbar_right = False
|
self.left_editor.view_widget.is_left_scrollbar = True
|
||||||
self.right_editor = editor.Editor()
|
self.right_editor = editor.Editor()
|
||||||
self.right_editor.load(right_path)
|
self.right_editor.load(right_path)
|
||||||
self.show_sub_highlights = True
|
self.show_sub_highlights = True
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue