[DE] Fix bug 55354

This commit is contained in:
JuliaSvinareva 2022-02-07 15:28:37 +03:00
parent 85f994303f
commit e29e00b74e
3 changed files with 6 additions and 1 deletions

View file

@ -775,6 +775,7 @@ define([
this.api.asc_enableKeyEvents(true);
} else if (this.leftMenu.btnThumbnails.isActive()) {
this.leftMenu.btnThumbnails.toggle(false);
this.leftMenu.panelThumbnails.hide();
this.leftMenu.onBtnMenuClick(this.leftMenu.btnThumbnails);
}
}

View file

@ -17,7 +17,7 @@
<div id="left-panel-chat" class="" style="display: none;"></div>
<!-- /** coauthoring end **/ -->
<div id="left-panel-navigation" class="" style="display: none; height: 100%;"></div>
<div id="left-panel-plugins" class="" style="display: none; height: 100%;"></div>
<div id="left-panel-thumbnails" class="" style="display: none; height: 100%;"></div>
<div id="left-panel-plugins" class="" style="display: none; height: 100%;"></div>
</div>
</div>

View file

@ -329,6 +329,10 @@ define([
this.panelNavigation['hide']();
this.btnNavigation.toggle(false, true);
}
if (this.panelThumbnails) {
this.panelThumbnails['hide']();
this.btnThumbnails.toggle(false, true);
}
}
},