We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Before pinning any windows, switching desktops by number works fine. After pinning, I get an error. I fixed it by changing line 597 from
if (guid_to_desktopNum[strGUID] == desktopNum) {
to
if (guid_to_desktopNum.Get(strGUID, -999) == desktopNum) {
but I don't know if that's a good fix or not.
I'm using Windows 11 and AHK 2.0.2
The text was updated successfully, but these errors were encountered:
fix _getFirstWindowInVD; #44
0de3e20
5f23818
No branches or pull requests
Before pinning any windows, switching desktops by number works fine. After pinning, I get an error.

I fixed it by changing line 597 from
if (guid_to_desktopNum[strGUID] == desktopNum) {
to
but I don't know if that's a good fix or not.
I'm using Windows 11 and AHK 2.0.2
The text was updated successfully, but these errors were encountered: