mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 09:21:39 +00:00
Merge pull request #6617 from verretor/console-history
Save indented lines in console history
This commit is contained in:
commit
2a1699c0e5
1 changed files with 1 additions and 1 deletions
|
@ -173,7 +173,7 @@ class Console(QtWidgets.QPlainTextEdit):
|
|||
return command
|
||||
|
||||
def addToHistory(self, command):
|
||||
if command[0:1] == ' ':
|
||||
if not self.construct and command[0:1] == ' ':
|
||||
return
|
||||
|
||||
if command and (not self.history or self.history[-1] != command):
|
||||
|
|
Loading…
Add table
Reference in a new issue