We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28ccede commit 1f9d194Copy full SHA for 1f9d194
plugins/plugin-codeflare/src/tray/main.ts
@@ -33,7 +33,8 @@ let tray: null | InstanceType<typeof import("electron").Tray> = null
33
class LiveMenu {
34
public constructor(
35
private readonly tray: import("electron").Tray,
36
- private readonly createWindow: CreateWindowFunction
+ private readonly createWindow: CreateWindowFunction,
37
+ private readonly periodic = setInterval(() => this.render(), 10 * 1000)
38
) {
39
this.render()
40
}
0 commit comments