Skip to content

Commit

Permalink
Fix custom label not working, #2044
Browse files Browse the repository at this point in the history
  • Loading branch information
mlouielu authored and Davidy22 committed Feb 23, 2022
1 parent c48caa7 commit 98895da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion guake/guake_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -1441,7 +1441,7 @@ def restore_tabs(self, filename="session.json", suppress_notify=False):
for index, tab in enumerate(tabs):
if tab.get("panes", False):
box, page_num, term = nb.new_page_with_focus(
label=tab["label"], empty=True
label=tab["label"], user_set=tab["custom_label_set"], empty=True
)
box.restore_box_layout(box.child, tab["panes"])
else:
Expand Down

0 comments on commit 98895da

Please sign in to comment.