Fix crash when view in scratchpad becomes urgent

This commit is contained in:
Ryan Dwyer 2018-09-04 22:37:03 +10:00
parent e5c9204b49
commit 3cc7de3fb4
1 changed files with 3 additions and 1 deletions

View File

@ -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) {