Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix custom label not working #2045

Merged
merged 2 commits into from
Feb 23, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
3 changes: 3 additions & 0 deletions releasenotes/notes/fragment_name-5fb61d3dcb93170c.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
fixes:
- |
- Fix custom label not working #2044