mirror of
https://github.com/podman-desktop/podman-desktop
synced 2026-04-21 17:47:22 +00:00
Merge pull request #122 from benoitf/DESKTOP-119
fix: always bring the window on top when opening dashboard
This commit is contained in:
commit
21fc9b4f5c
1 changed files with 3 additions and 6 deletions
|
|
@ -345,12 +345,9 @@ export class TrayMenu {
|
|||
if (window?.isMinimized()) {
|
||||
window.restore();
|
||||
}
|
||||
|
||||
if (!window?.isVisible()) {
|
||||
window?.show();
|
||||
if (isMac) {
|
||||
app.dock.show();
|
||||
}
|
||||
window?.show();
|
||||
if (isMac) {
|
||||
app.dock.show();
|
||||
}
|
||||
window?.focus();
|
||||
window?.moveTop();
|
||||
|
|
|
|||
Loading…
Reference in a new issue