mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-18 07:34:54 +00:00
appDisplay: Call super.vfunc_unmap last
So as to guarantee the unmapped state sticks and doesn't get toggled back to mapped before we return. Being in a mapped state when `FolderIcon.vfunc_unmap()` returned was causing an assertion failure in `clutter_actor_set_mapped` and crashed the shell. Closes: https://gitlab.gnome.org/GNOME/gnome-shell/issues/2170
This commit is contained in:
parent
6ec996e45b
commit
33ae220ad2
1 changed files with 2 additions and 2 deletions
|
|
@ -1525,10 +1525,10 @@ var FolderIcon = GObject.registerClass({
|
|||
}
|
||||
|
||||
vfunc_unmap() {
|
||||
super.vfunc_unmap();
|
||||
|
||||
if (this._dialog)
|
||||
this._dialog.popdown();
|
||||
|
||||
super.vfunc_unmap();
|
||||
}
|
||||
|
||||
open() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue