Skip to content

Commit

Permalink
Fix crash when sending task switcher to background
Browse files Browse the repository at this point in the history
  • Loading branch information
Eeems committed Feb 5, 2024
1 parent f70b086 commit 6a93b66
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
10 changes: 10 additions & 0 deletions applications/task-switcher/main.qml
Original file line number Diff line number Diff line change
Expand Up @@ -160,9 +160,19 @@ OxideWindow {
ScriptAction { script: {
controller.breadcrumb("navigation", "loading", "navigation");
console.log("Loading display");
window.raise();
controller.startup();
} }
}
},
Transition {
from: "*"; to: "hidden"
SequentialAnimation {
ScriptAction { script: {
controller.breadcrumb("navigation", "hidden", "navigation");
window.lower();
} }
}
}
]
}
Expand Down
1 change: 0 additions & 1 deletion shared/liboxide/signalhandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ namespace Oxide {
O_WARNING("Failed to emit" << name);
}
O_DEBUG("emitted" << name);
::signal(signal, SIG_DFL);
}
}, Qt::QueuedConnection);
}
Expand Down

0 comments on commit 6a93b66

Please sign in to comment.