mirror of
https://github.com/gnustep/libs-back.git
synced 2025-04-25 00:40:55 +00:00
fix for #8700
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/branches/gnustep_testplant_branch@39477 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
0a23ca1c65
commit
916020216b
1 changed files with 4 additions and 1 deletions
|
@ -635,10 +635,13 @@ BOOL CALLBACK LoadDisplayMonitorInfo(HMONITOR hMonitor,
|
|||
W32DisplayMonitorInfo *infoMon = [monitorInfo objectAtIndex:index];
|
||||
RECT infoRect = [infoMon rect];
|
||||
NSRect infoFrame = [infoMon frame];
|
||||
NSLog(@"screen %ld - hMon: %ld frame:top:%ld left:%ld bottom:%ld right:%ld frame: %@\n",
|
||||
|
||||
if ([[NSUserDefaults standardUserDefaults] boolForKey:@"GSMonitorScreensLogs"]) {
|
||||
NSLog(@"screen %ld - hMon: %ld frame:top:%ld left:%ld bottom:%ld right:%ld frame: %@\n",
|
||||
index, (long)[infoMon hMonitor],
|
||||
infoRect.top, infoRect.left, infoRect.bottom, infoRect.right,
|
||||
NSStringFromRect(infoFrame));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue