Merge pull request #368 from charlesg99/fix-fullscreen-drag

Ignore window resizing while in fullscreen mode
This commit is contained in:
Jason DeRose
2018-04-02 10:25:45 -04:00
committed by GitHub

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');
}