mirror of
https://github.com/swaywm/sway.git
synced 2024-11-13 05:54:11 +01:00
Merge pull request #2940 from RyanDwyer/fix-swaybar-crash
Fix swaybar crash when there's no status_command
This commit is contained in:
commit
970501f05e
@ -155,10 +155,12 @@ bool determine_bar_visibility(struct swaybar *bar, bool moving_layer) {
|
||||
if (visible != bar->visible) {
|
||||
bar->visible = visible;
|
||||
|
||||
wlr_log(WLR_DEBUG, "Sending %s signal to status command",
|
||||
visible ? "cont" : "stop");
|
||||
kill(bar->status->pid,
|
||||
visible ? bar->status->cont_signal : bar->status->stop_signal);
|
||||
if (bar->status) {
|
||||
wlr_log(WLR_DEBUG, "Sending %s signal to status command",
|
||||
visible ? "cont" : "stop");
|
||||
kill(bar->status->pid, visible ?
|
||||
bar->status->cont_signal : bar->status->stop_signal);
|
||||
}
|
||||
}
|
||||
|
||||
return visible;
|
||||
|
Loading…
Reference in New Issue
Block a user