- disabled a skip_quotes method in ToolShell.FCShell class so I can now use quotes to enclose file paths with spaces inside

This commit is contained in:
Marius Stanciu
2020-04-28 21:08:40 +03:00
committed by Marius
parent 35674c9647
commit 907e4bc6d9
7 changed files with 29 additions and 30 deletions

View File

@@ -2694,8 +2694,7 @@ class _ExpandableTextEdit(QTextEdit):
if line_count <= 1:
self.historyPrev.emit()
return
elif event.matches(QKeySequence.MoveToNextPage) or \
event.matches(QKeySequence.MoveToPreviousPage):
elif event.matches(QKeySequence.MoveToNextPage) or event.matches(QKeySequence.MoveToPreviousPage):
return self._termWidget.browser().keyPressEvent(event)
tc = self.textCursor()