Skip to content

Commit 39b10df

Browse files
committed
fix visibility should not be set (only cleared)
1 parent 3fe20ce commit 39b10df

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

lib/es5/dock-spawn-ts.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/js/PanelContainer.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/js/PanelContainer.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/PanelContainer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,7 @@ export class PanelContainer implements IDockContainerWithSize {
491491
}
492492

493493
setVisible(isVisible: boolean) {
494-
this.elementContentContainer.style.visibility = isVisible ? 'visible' : 'hidden';
494+
this.elementContentContainer.style.visibility = isVisible ? '' : 'hidden';
495495
}
496496

497497
setTitle(title: string) {

0 commit comments

Comments
 (0)