Commit 125c58e1 authored by Aleksi Suomalainen's avatar Aleksi Suomalainen

[compositor] Don't show homewindow if there is a call active.

parent e4368027
......@@ -288,7 +288,9 @@ Compositor {
WindowWrapperMystic { }
}
onDisplayOff: setCurrentWindow(root.homeWindow)
onDisplayOff:
if (root.topmostAlarmWindow == null)
setCurrentWindow(root.homeWindow)
onWindowAdded: {
console.log("Compositor: Window added \"" + window.title + "\"" + " category: " + window.category)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment