Fix moving/resizing windows

There's no need to additionally convert the coordinates as [platformWindow frame] already
returns them the way the delegate expects (the Cocoa way).
This commit is contained in:
Sergey Bugaev 2018-05-15 19:25:48 +03:00
parent 0c38286816
commit 0a95aee94c

View File

@ -564,7 +564,7 @@ NSArray *CGSOrderedWindowNumbers() {
case ConfigureNotify:
[window frameChanged];
[delegate platformWindow:window frameChanged:[window transformFrame:[window frame]] didSize:YES];
[delegate platformWindow:window frameChanged:[window frame] didSize:YES];
break;
case ConfigureRequest: