Update the info tab on appearance change

This commit is contained in:
Mitchell Livingston
2018-12-21 17:37:17 -05:00
parent daf6a9d307
commit 47cbb898f8
6 changed files with 60 additions and 9 deletions

21
macosx/InfoTabMatrix.m Normal file
View File

@@ -0,0 +1,21 @@
//
// InfoTabMatrix.m
// Transmission
//
// Created by Mitchell Livingston on 12/21/18.
// Copyright © 2018 The Transmission Project. All rights reserved.
//
#import "InfoTabMatrix.h"
#import "InfoTabButtonCell.h"
@implementation InfoTabMatrix
- (void)viewDidChangeEffectiveAppearance;
{
for (InfoTabButtonCell *cell in self.cells) {
[cell reloadAppearance];
}
}
@end