Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
storyxc committed Aug 16, 2023
1 parent 27cd22c commit d597463
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion electron/tray/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ class TrayGenerator {
* We hide the rest by passing false to same method:
*/
showWindow() {
this.window?.setVisibleOnAllWorkspaces(true, { visibleOnFullScreen: true, skipTransformProcessType: true });
const position = this.getWindowPosition();
this.window?.setPosition(position.x, position.y, false);
this.window?.setVisibleOnAllWorkspaces(true, { visibleOnFullScreen: true });
this.window?.show();
this.window?.focus();
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ido",
"private": true,
"version": "1.0.3",
"version": "1.0.4",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build && electron-builder",
Expand Down

0 comments on commit d597463

Please sign in to comment.