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:
parent
320163417f
commit
37358169a9
1 changed files with 1 additions and 2 deletions
|
@ -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];
|
||||
|
|
Loading…
Reference in a new issue