Skip to content

Commit

Permalink
Split off path into its own arg (#3641)
Browse files Browse the repository at this point in the history
  • Loading branch information
iamllama authored Dec 16, 2024
1 parent 65fd461 commit a0712b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qt/aqt/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -959,7 +959,7 @@ def focus_explorer():
win32gui.ShowWindow(hwnd, win32con.SW_RESTORE)
win32gui.SetForegroundWindow(hwnd)

subprocess.run(["explorer", f"/select,{path}"], check=False)
subprocess.run(["explorer", "/select,", path], check=False)
mw.progress.single_shot(500, focus_explorer)


Expand Down

0 comments on commit a0712b0

Please sign in to comment.