1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-25 01:03:01 +00:00

#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

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];