This commit is contained in:
daboe01
2026-02-09 08:26:40 +01:00
parent 674a03dc23
commit 113be1254e
+14 -1
View File
@@ -521,7 +521,6 @@ CPTableViewFirstColumnOnlyAutoresizingStyle = 5;
_destinationDragStyle = CPTableViewDraggingDestinationFeedbackStyleRegular;
_contentBindingExplicitlySet = NO;
// [self setBackgroundColor:[CPColor whiteColor]];
[self _init];
}
@@ -592,6 +591,20 @@ CPTableViewFirstColumnOnlyAutoresizingStyle = 5;
[self _initSubclass];
}
- (void)setThemeState:(CPThemeState)aState
{
[super setThemeState:aState];
[self setBackgroundColor:[self hasThemeState:CPThemeStateHUD] ? [CPColor clearColor] : [CPColor whiteColor]];
}
- (void)unsetThemeState:(CPThemeState)aState
{
[super unsetThemeState:aState];
[self setBackgroundColor:[self hasThemeState:CPThemeStateHUD] ? [CPColor clearColor] : [CPColor whiteColor]];
}
- (void)_initSubclass
{
_selectedColumnBackgroundViews = [];