mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2026-02-16 10:31:02 +00:00
Fix transparent app grid background being incorrectly overridden
This commit is contained in:
@@ -190,8 +190,12 @@ static const int LABEL_DY = 20;
|
||||
UIButton *previousButton = (UIButton *)context.previouslyFocusedItem;
|
||||
UIButton *nextButton = (UIButton *) context.nextFocusedItem;
|
||||
|
||||
previousButton.superview.backgroundColor = nil;
|
||||
nextButton.superview.backgroundColor = [UIColor darkGrayColor];
|
||||
if (previousButton.superview == self) {
|
||||
self.backgroundColor = nil;
|
||||
}
|
||||
if (nextButton.superview == self) {
|
||||
nextButton.superview.backgroundColor = [UIColor darkGrayColor];
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user