Changeset 9036
- Timestamp:
- Sep 4, 2009, 10:21:47 PM (13 years ago)
- Location:
- trunk/macosx
- Files:
-
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/macosx/FileOutlineController.m
r9034 r9036 134 134 { 135 135 if ([QLPreviewPanel sharedPreviewPanelExists] && [[QLPreviewPanel sharedPreviewPanel] isVisible]) 136 { 136 137 [[QLPreviewPanel sharedPreviewPanel] reloadData]; 138 [[QLPreviewPanel sharedPreviewPanel] updateController]; 139 } 137 140 } 138 141 -
trunk/macosx/InfoWindowController.h
r9034 r9036 96 96 - (NSArray *) quickLookURLs; 97 97 - (BOOL) canQuickLook; 98 - (NSRect) quickLookFrameWithURL: (NSURL*) url;99 98 100 99 - (void) setPiecesView: (id) sender; -
trunk/macosx/InfoWindowController.m
r9034 r9036 821 821 [view setHidden: NO]; 822 822 823 if ( fCurrentTabTag == TAB_FILES_TAG || oldTabTag == TAB_FILES_TAG823 if ((fCurrentTabTag == TAB_FILES_TAG || oldTabTag == TAB_FILES_TAG) 824 824 && ([QLPreviewPanel sharedPreviewPanelExists] && [[QLPreviewPanel sharedPreviewPanel] isVisible])) 825 [[QLPreviewPanel sharedPreviewPanel] reloadData];825 [[QLPreviewPanel sharedPreviewPanel] updateController]; 826 826 } 827 827 … … 1110 1110 - (BOOL) acceptsPreviewPanelControl: (QLPreviewPanel *) panel 1111 1111 { 1112 return fCurrentTabTag == TAB_FILES_TAG && [ [fFileController outlineView] numberOfSelectedRows] > 0;1112 return fCurrentTabTag == TAB_FILES_TAG && [self canQuickLook]; 1113 1113 } 1114 1114
Note: See TracChangeset
for help on using the changeset viewer.