appDisplay: Don't call a non-existent onComplete
Follow up to commit 6bb905895c932db51ff0314fecec765f2f703f31 . https://bugzilla.gnome.org/show_bug.cgi?id=745627
This commit is contained in:
parent
0ebba112d7
commit
4ff489d24b
@ -544,7 +544,8 @@ const AllView = new Lang.Class({
|
|||||||
this._scrollView.reactive = false;
|
this._scrollView.reactive = false;
|
||||||
let completionFunc = Lang.bind(this, function() {
|
let completionFunc = Lang.bind(this, function() {
|
||||||
this._scrollView.reactive = true;
|
this._scrollView.reactive = true;
|
||||||
onComplete();
|
if (onComplete)
|
||||||
|
onComplete();
|
||||||
});
|
});
|
||||||
|
|
||||||
if (animationDirection == IconGrid.AnimationDirection.OUT &&
|
if (animationDirection == IconGrid.AnimationDirection.OUT &&
|
||||||
|
Loading…
x
Reference in New Issue
Block a user