mirror of
https://github.com/arsenetar/dupeguru.git
synced 2025-03-10 05:34:36 +00:00
17 lines
303 B
Objective-C
17 lines
303 B
Objective-C
#import "DetailsPanel.h"
|
|
|
|
@implementation DetailsPanel
|
|
- (id)initWithPy:(PyApp *)aPy
|
|
{
|
|
self = [super initWithWindowNibName:@"Details"];
|
|
[self window]; //So the detailsTable is initialized.
|
|
[detailsTable setPy:aPy];
|
|
return self;
|
|
}
|
|
|
|
- (void)refresh
|
|
{
|
|
[detailsTable reloadData];
|
|
}
|
|
@end
|