Bug with closing File menu (when search dialog was opened before).

This commit is contained in:
Julia Radzhabova 2017-06-20 12:53:18 +03:00
parent f38d5f9b54
commit 9f34062d32
3 changed files with 3 additions and 3 deletions

View file

@ -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);
}
},

View file

@ -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);
}
},

View file

@ -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);
}
},