mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-09-07 11:17:12 +00:00
hud fix
This commit is contained in:
+14
-1
@@ -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 = [];
|
||||
|
||||
Reference in New Issue
Block a user