Bug with closing File menu (when search dialog was opened before).
This commit is contained in:
parent
f38d5f9b54
commit
9f34062d32
|
@ -537,7 +537,7 @@ define([
|
|||
if ( state == 'show' )
|
||||
this.dlgSearch.suspendKeyEvents();
|
||||
else
|
||||
Common.Utils.asyncCall(this.dlgSearch.resumeKeyEvents);
|
||||
Common.Utils.asyncCall(this.dlgSearch.resumeKeyEvents, this.dlgSearch);
|
||||
}
|
||||
},
|
||||
|
||||
|
|
|
@ -430,7 +430,7 @@ define([
|
|||
if ( state == 'show' )
|
||||
this.dlgSearch.suspendKeyEvents();
|
||||
else
|
||||
Common.Utils.asyncCall(this.dlgSearch.resumeKeyEvents);
|
||||
Common.Utils.asyncCall(this.dlgSearch.resumeKeyEvents, this.dlgSearch);
|
||||
}
|
||||
},
|
||||
|
||||
|
|
|
@ -589,7 +589,7 @@ define([
|
|||
if ( state == 'show' )
|
||||
this.dlgSearch.suspendKeyEvents();
|
||||
else
|
||||
Common.Utils.asyncCall(this.dlgSearch.resumeKeyEvents);
|
||||
Common.Utils.asyncCall(this.dlgSearch.resumeKeyEvents, this.dlgSearch);
|
||||
}
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in a new issue