Ignore window resizing while in fullscreen mode

This commit is contained in:
CharlesG
2018-03-28 07:51:41 -06:00
parent f1a6389e27
commit 81cf17c83d

View File

@@ -325,7 +325,7 @@ var Intellihide = new Lang.Class({
_checkIfShouldBeVisible: function(fromRevealMechanism) {
if (fromRevealMechanism) {
//the user is trying to reveal the panel
if (this._primaryMonitor.inFullscreen) {
if (this._primaryMonitor.inFullscreen && !this._dragging) {
return this._dtpSettings.get_boolean('intellihide-show-in-fullscreen');
}