Skip to content

Commit 003b93f

Browse files
authored
window - flashFrame works on Linux too (microsoft#255996)
1 parent b5d2dfb commit 003b93f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/platform/windows/electron-main/windowImpl.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ export abstract class BaseWindow extends Disposable implements IBaseWindow {
369369
disposables.add(DockBadgeManager.INSTANCE.acquireBadge(this));
370370

371371
// Flash/Bounce
372-
if (isWindows) {
372+
if (isWindows || isLinux) {
373373
this.win?.flashFrame(true);
374374
disposables.add(toDisposable(() => this.win?.flashFrame(false)));
375375
} else if (isMacintosh) {

0 commit comments

Comments
 (0)