Skip to content

Commit

Permalink
#589 don't attempt to load scripting-addition when dock is restarted …
Browse files Browse the repository at this point in the history
…(on Big sur)
  • Loading branch information
koekeishiya committed Oct 4, 2020
1 parent d65a63b commit 41726c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/event.c
Original file line number Diff line number Diff line change
Expand Up @@ -944,7 +944,7 @@ static EVENT_CALLBACK(EVENT_HANDLER_DOCK_DID_RESTART)
{
debug("%s:\n", __FUNCTION__);

if (scripting_addition_is_installed()) {
if (!workspace_is_macos_bigsur() && scripting_addition_is_installed()) {
scripting_addition_load();

for (int window_index = 0; window_index < g_window_manager.window.capacity; ++window_index) {
Expand Down

0 comments on commit 41726c4

Please sign in to comment.