parent
11ee5befcc
commit
162e6d6483
@ -156,6 +156,7 @@ Fixed
|
|||||||
- The tabbar now displays correctly with the Adwaita Qt theme
|
- The tabbar now displays correctly with the Adwaita Qt theme
|
||||||
- The default `sk` keybinding now sets the commandline to `:bind` correctly
|
- The default `sk` keybinding now sets the commandline to `:bind` correctly
|
||||||
- Fixed hang when using multiple spaces in a row with the URL completion
|
- Fixed hang when using multiple spaces in a row with the URL completion
|
||||||
|
- Fixed crash when closing a window without focusing it
|
||||||
|
|
||||||
v0.8.3 (unreleased)
|
v0.8.3 (unreleased)
|
||||||
-------------------
|
-------------------
|
||||||
|
@ -492,9 +492,9 @@ class MainWindow(QWidget):
|
|||||||
|
|
||||||
def _do_close(self):
|
def _do_close(self):
|
||||||
"""Helper function for closeEvent."""
|
"""Helper function for closeEvent."""
|
||||||
|
try:
|
||||||
last_visible = objreg.get('last-visible-main-window')
|
last_visible = objreg.get('last-visible-main-window')
|
||||||
if self is last_visible:
|
if self is last_visible:
|
||||||
try:
|
|
||||||
objreg.delete('last-visible-main-window')
|
objreg.delete('last-visible-main-window')
|
||||||
except KeyError:
|
except KeyError:
|
||||||
pass
|
pass
|
||||||
|
Loading…
Reference in New Issue
Block a user