We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dbe926d commit 2ac13b5Copy full SHA for 2ac13b5
1 file changed
core/trashcan.ts
@@ -306,6 +306,7 @@ export class Trashcan
306
setTimeout(() => {
307
this.flyout?.show(contents);
308
blocklyStyle.cursor = '';
309
+ this.workspace.scrollbar?.setVisible(false);
310
}, 10);
311
this.fireUiEvent(true);
312
}
@@ -316,6 +317,7 @@ export class Trashcan
316
317
return;
318
319
this.flyout?.hide();
320
+ this.workspace.scrollbar?.setVisible(true);
321
this.fireUiEvent(false);
322
this.workspace.recordDragTargets();
323
0 commit comments