mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-17 23:24:51 +00:00
Bug 563394 - revert change to run overlay key in idle
This was likely a different bug, possibly the OOM after a period of time. It seems reliable for me now without the idle. svn path=/trunk/; revision=140
This commit is contained in:
parent
85c22e484d
commit
9bee44fe26
1 changed files with 5 additions and 10 deletions
|
|
@ -124,16 +124,11 @@ function start() {
|
|||
|
||||
let display = global.screen.get_display();
|
||||
display.connect('overlay-key', function(display) {
|
||||
// Queue an idle for this, because we're getting called
|
||||
// out of a metacity event handler, and doing a lot of
|
||||
// work from inside there is...iffy.
|
||||
Mainloop.idle_add(function () {
|
||||
if (overlay.visible) {
|
||||
hide_overlay();
|
||||
} else {
|
||||
show_overlay();
|
||||
}
|
||||
});
|
||||
if (overlay.visible) {
|
||||
hide_overlay();
|
||||
} else {
|
||||
show_overlay();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue