mirror of
https://github.com/swaywm/sway.git
synced 2025-11-08 13:29:50 -05:00
Merge pull request #2547 from RyanDwyer/fix-reload-crash
Fix crash on reload
This commit is contained in:
commit
89a045835f
3 changed files with 17 additions and 1 deletions
|
|
@ -310,7 +310,7 @@ void seat_execute_command(struct sway_seat *seat, struct sway_binding *binding)
|
|||
bool reload = false;
|
||||
// if this is a reload command we need to make a duplicate of the
|
||||
// binding since it will be gone after the reload has completed.
|
||||
if (strcasecmp(binding->command, "reload") == 0) {
|
||||
if (strcasestr(binding->command, "reload")) {
|
||||
reload = true;
|
||||
binding_copy = sway_binding_dup(binding);
|
||||
if (!binding_copy) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue