You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've been using emacs and Firefox stacked in one workspace, and have been having an issue lately where setting that up causes the compositor to crash.
Nov 22 16:44:48 Superficies cosmic-comp[764794]: thread 'main' panicked at 'called `Option::unwrap()` on a `None` value': src/shell/workspace.rs:988
I've been able to reproduce it consistently by following certain steps, and looking at WAYLAND_DEBUG logs it seems to be related to set_maximized (I guess something about my Emacs configuration is causing it to call that), which I was able to reproduce in a modified sctk example. But I have a simpler reproduction:
Super + T
Super + M
Super + S
Super + Y
Super + Y
(If there's a magic sequence of 5 key combos to crash the compositor, does that count as a cheat code?)
I guess maximized_state needs to be kept in sync with the maximize status of the Window, or an unwrap like this will panic. Looking at the code I'm not sure whats wrong, but at least it's easy to reproduce.
The text was updated successfully, but these errors were encountered:
I've been using emacs and Firefox stacked in one workspace, and have been having an issue lately where setting that up causes the compositor to crash.
I've been able to reproduce it consistently by following certain steps, and looking at
WAYLAND_DEBUG
logs it seems to be related toset_maximized
(I guess something about my Emacs configuration is causing it to call that), which I was able to reproduce in a modifiedsctk
example. But I have a simpler reproduction:(If there's a magic sequence of 5 key combos to crash the compositor, does that count as a cheat code?)
I guess
maximized_state
needs to be kept in sync with the maximize status of theWindow
, or an unwrap like this will panic. Looking at the code I'm not sure whats wrong, but at least it's easy to reproduce.The text was updated successfully, but these errors were encountered: