mirror of
https://github.com/swaywm/sway.git
synced 2024-11-26 18:01:29 +00:00
Fix crash when view in scratchpad becomes urgent
This commit is contained in:
parent
e5c9204b49
commit
3cc7de3fb4
|
@ -1028,7 +1028,9 @@ void view_set_urgent(struct sway_view *view, bool enable) {
|
|||
|
||||
ipc_event_window(view->container, "urgent");
|
||||
|
||||
workspace_detect_urgent(view->container->workspace);
|
||||
if (view->container->workspace) {
|
||||
workspace_detect_urgent(view->container->workspace);
|
||||
}
|
||||
}
|
||||
|
||||
bool view_is_urgent(struct sway_view *view) {
|
||||
|
|
Loading…
Reference in a new issue