From: Mitchell Livingston Date: Sat, 4 Jun 2011 13:17:56 +0000 (+0000) Subject: #4245 Disable Quick Look space key in the inspector X-Git-Tag: 2.32~37 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=104a42333f3f0854e31213daef597e74fd2b4f8b;p=transmission #4245 Disable Quick Look space key in the inspector --- diff --git a/NEWS b/NEWS index c20a9943d..c2500eab2 100644 --- a/NEWS +++ b/NEWS @@ -2,6 +2,7 @@ [http://trac.transmissionbt.com/query?milestone=2.32&group=component&order=severity All tickets closed by this release] ==== Mac ==== * Lion stability fixes + * Improved tabbing behavior ==== GTK+ ==== * Remove GNOME desktop proxy support diff --git a/Transmission.xcodeproj/project.pbxproj b/Transmission.xcodeproj/project.pbxproj index af1caeacd..29a994b48 100644 --- a/Transmission.xcodeproj/project.pbxproj +++ b/Transmission.xcodeproj/project.pbxproj @@ -2745,7 +2745,6 @@ GCC_UNROLL_LOOPS = YES; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED = YES; - GCC_WARN_TYPECHECK_CALLS_TO_PRINTF = YES; GCC_WARN_UNUSED_VARIABLE = YES; HEADER_SEARCH_PATHS = ( "third-party/curl/include", @@ -2873,7 +2872,6 @@ GCC_UNROLL_LOOPS = YES; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED = YES; - GCC_WARN_TYPECHECK_CALLS_TO_PRINTF = YES; GCC_WARN_UNUSED_VARIABLE = YES; HEADER_SEARCH_PATHS = ( "third-party/curl/include", @@ -2938,7 +2936,6 @@ GCC_UNROLL_LOOPS = YES; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED = YES; - GCC_WARN_TYPECHECK_CALLS_TO_PRINTF = YES; GCC_WARN_UNUSED_VARIABLE = YES; HEADER_SEARCH_PATHS = ( "third-party/curl/include", diff --git a/macosx/FileOutlineView.m b/macosx/FileOutlineView.m index 044d955e3..c426772fc 100644 --- a/macosx/FileOutlineView.m +++ b/macosx/FileOutlineView.m @@ -60,22 +60,6 @@ [super mouseDown: event]; } -- (void) keyDown: (NSEvent *) event -{ - const unichar firstChar = [[event charactersIgnoringModifiers] characterAtIndex: 0]; - - //don't allow quick look on add window - if ([NSApp isOnSnowLeopardOrBetter] && firstChar == ' ' && [[[self window] windowController] isKindOfClass: [InfoWindowController class]]) - { - if ([[QLPreviewPanelSL sharedPreviewPanel] isVisible]) - [[QLPreviewPanelSL sharedPreviewPanel] orderOut: nil]; - else - [[QLPreviewPanelSL sharedPreviewPanel] makeKeyAndOrderFront: nil]; - } - - [super keyDown: event]; -} - - (NSMenu *) menuForEvent: (NSEvent *) event { const NSInteger row = [self rowAtPoint: [self convertPoint: [event locationInWindow] fromView: nil]];