From b773af96b8a3831440ff51758beb0eba7b85660f Mon Sep 17 00:00:00 2001 From: cacaodev Date: Sat, 18 Jun 2016 13:40:14 +0200 Subject: [PATCH] FIXED : css display attribute was incorrectly set --- AppKit/CPView.j | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AppKit/CPView.j b/AppKit/CPView.j index a142e82a9..3780f63b9 100644 --- a/AppKit/CPView.j +++ b/AppKit/CPView.j @@ -1596,7 +1596,7 @@ var CPViewHighDPIDrawingEnabled = YES; #if PLATFORM(DOM) - _DOMElement.style.display = _isHidden ? "none" : "block"; + _DOMElement.style.display = aFlag ? "none" : "block"; #endif if (aFlag)