Skip to content

Commit

Permalink
fix: ignore errors when frame not exists
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs090218 committed Jul 3, 2024
1 parent cf2cbe0 commit 5bad994
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion centaur-tabs-functions.el
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@ current cached copy."
((frame-live-p frame))
((null (frame-parent frame)))) ; only the root frame
(centaur-tabs-buffer-update-groups)
(centaur-tabs-display-update)))
(ignore-errors (centaur-tabs-display-update))))

(defun centaur-tabs-on-window-buffer-change (&rest _)
"Function to be run after window buffer is changed."
Expand Down

0 comments on commit 5bad994

Please sign in to comment.