#3582 Quicklook command should work when inspector window is focused

This commit is contained in:
Mitchell Livingston 2010-10-17 01:54:40 +00:00
parent 320163417f
commit 37358169a9
1 changed files with 1 additions and 2 deletions

View File

@ -91,8 +91,7 @@
const unichar firstChar = [[event charactersIgnoringModifiers] characterAtIndex: 0];
//don't allow quick look on add window
#warning get rid of conversion of protocol and replace with @protocol(QLPreviewPanelDataSource)
if ([NSApp isOnSnowLeopardOrBetter] && firstChar == ' ' && [[[self window] windowController] conformsToProtocol: NSProtocolFromString(@"QLPreviewPanelDataSource")])
if ([NSApp isOnSnowLeopardOrBetter] && firstChar == ' ' && [[[self window] windowController] isKindOfClass: [InfoWindowController class]])
{
if ([[QLPreviewPanelSL sharedPreviewPanel] isVisible])
[[QLPreviewPanelSL sharedPreviewPanel] orderOut: nil];