|
From: <ho...@us...> - 2025-08-17 17:13:52
|
Revision: 15674
http://sourceforge.net/p/skim-app/code/15674
Author: hofman
Date: 2025-08-17 17:13:48 +0000 (Sun, 17 Aug 2025)
Log Message:
-----------
revert commit that hiked along
Modified Paths:
--------------
trunk/SKColorPicker.m
Modified: trunk/SKColorPicker.m
===================================================================
--- trunk/SKColorPicker.m 2025-08-17 17:12:35 UTC (rev 15673)
+++ trunk/SKColorPicker.m 2025-08-17 17:13:48 UTC (rev 15674)
@@ -100,7 +100,7 @@
NSScrubberItemView *itemView = [aScrubber makeItemWithIdentifier:COLOR_IDENTIFIER owner:nil];
NSImageView *imageView = [[itemView subviews] firstObject];
if (imageView == nil || [imageView isKindOfClass:[NSImageView class]] == NO || [[imageView cell] isKindOfClass:[SKColorCell class]] == NO) {
- imageView = [[SKColorView alloc] initWithFrame:[itemView bounds]];
+ imageView = [[NSImageView alloc] initWithFrame:[itemView bounds]];
SKColorCell *colorCell = [[SKColorCell alloc] init];
[colorCell setShouldFill:YES];
[imageView setCell:colorCell];
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|