Fix :debug-console with PyQt 5.6
This commit is contained in:
parent
2fb5de8bd3
commit
29aedef420
@ -65,6 +65,7 @@ Fixed
|
|||||||
- Don't display quit confirmation with finished downloads
|
- Don't display quit confirmation with finished downloads
|
||||||
- Fixed updating the tab index in the statusbar when opening a background tab
|
- Fixed updating the tab index in the statusbar when opening a background tab
|
||||||
- Fixed a crash when entering `:-- ` in the commandline
|
- Fixed a crash when entering `:-- ` in the commandline
|
||||||
|
- Fixed `:debug-console` with PyQt 5.6
|
||||||
|
|
||||||
v0.6.2
|
v0.6.2
|
||||||
------
|
------
|
||||||
|
@ -56,7 +56,7 @@ class ConsoleLineEdit(miscwidgets.CommandLineEdit):
|
|||||||
self._history = cmdhistory.History(parent=self)
|
self._history = cmdhistory.History(parent=self)
|
||||||
self.returnPressed.connect(self.on_return_pressed)
|
self.returnPressed.connect(self.on_return_pressed)
|
||||||
|
|
||||||
@pyqtSlot(str)
|
@pyqtSlot()
|
||||||
def on_return_pressed(self):
|
def on_return_pressed(self):
|
||||||
"""Execute the line of code which was entered."""
|
"""Execute the line of code which was entered."""
|
||||||
self._history.stop()
|
self._history.stop()
|
||||||
|
Loading…
Reference in New Issue
Block a user