Fix crash when window_ids change during init
This commit is contained in:
parent
b98d34b29c
commit
bcb4649235
@ -301,7 +301,7 @@ def _open_startpage(win_id=None):
|
|||||||
window_ids = [win_id]
|
window_ids = [win_id]
|
||||||
else:
|
else:
|
||||||
window_ids = objreg.window_registry
|
window_ids = objreg.window_registry
|
||||||
for cur_win_id in window_ids:
|
for cur_win_id in list(window_ids): # Copying as the dict could change
|
||||||
tabbed_browser = objreg.get('tabbed-browser', scope='window',
|
tabbed_browser = objreg.get('tabbed-browser', scope='window',
|
||||||
window=cur_win_id)
|
window=cur_win_id)
|
||||||
if tabbed_browser.count() == 0:
|
if tabbed_browser.count() == 0:
|
||||||
|
Loading…
Reference in New Issue
Block a user