Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
朱子楚\zhuzi committed Apr 24, 2024
1 parent d2fdd08 commit 24fdff7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Qt6/imports/FluentUI/Controls/FluRouter.qml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@ QtObject {
var launchMode = win.launchMode
if(launchMode === 1){
win.argument = argument
win.show()
if(!win.visible){
win.visible = true
}
win.raise()
win.requestActivate()
return
Expand Down

0 comments on commit 24fdff7

Please sign in to comment.