1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-01-03 05:25:52 +00:00
transmission/macosx/InfoTabMatrix.m
2018-12-21 17:37:17 -05:00

21 lines
393 B
Objective-C

//
// 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