mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-27 07:23:25 +00:00
don't show prefixes in completions
This commit is contained in:
parent
6b72d815c5
commit
d4f2c4855f
1 changed files with 2 additions and 0 deletions
|
@ -71,6 +71,8 @@ class Console(QtGui.QPlainTextEdit):
|
|||
|
||||
c = self.textCursor()
|
||||
c.setPosition(self.completions_pos)
|
||||
|
||||
completions = map(lambda x: x.split('.')[-1], completions)
|
||||
t = '\n' + ' '.join(completions)
|
||||
if len(t) > 500:
|
||||
t = t[:500] + '...'
|
||||
|
|
Loading…
Add table
Reference in a new issue