We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6bbf94c commit 2803a86Copy full SHA for 2803a86
1 file changed
src/vs/workbench/browser/labels.ts
@@ -240,14 +240,14 @@ class ResourceLabelWidget extends IconLabel {
240
}
241
242
notifyVisibilityChanged(visible: boolean): void {
243
- if (visible === this.isHidden) {
244
- this.isHidden = !visible;
245
-
246
- if (visible && this.needsRedraw) {
247
- this.render(this.needsRedraw === Redraw.Basic ? false : true);
248
- this.needsRedraw = void 0;
249
- }
250
+ // if (visible === this.isHidden) {
+ // this.isHidden = !visible;
+
+ // if (visible && this.needsRedraw) {
+ // this.render(this.needsRedraw === Redraw.Basic ? false : true);
+ // this.needsRedraw = void 0;
+ // }
251
252
253
notifyModelModeChanged(e: { model: ITextModel; oldModeId: string; }): void {
0 commit comments