You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This problem reproduce with the latest code. And some app such as SoureTree\WeChat has the problem also,reason and solution as below:
The problem caused by the call of convertBaseToScreen(INAppStoreWindow.m line 567),it works well if caculate the offset of window move without the convert.
NSPoint now = [window convertBaseToScreen:theEvent.locationInWindow];
NSPoint now = [NSEvent mouseLocation];
The text was updated successfully, but these errors were encountered:
This problem reproduce with the latest code. And some app such as SoureTree\WeChat has the problem also,reason and solution as below:
The problem caused by the call of convertBaseToScreen(INAppStoreWindow.m line 567),it works well if caculate the offset of window move without the convert.
NSPoint now = [window convertBaseToScreen:theEvent.locationInWindow];
NSPoint now = [NSEvent mouseLocation];
The text was updated successfully, but these errors were encountered: