mirror of
https://github.com/objective-see/BlockBlock.git
synced 2026-03-22 07:02:39 +00:00
57ca40fc7f
BlockBlock v1.0 (beta)
26 lines
497 B
Objective-C
Executable File
26 lines
497 B
Objective-C
Executable File
//
|
|
// file: StatusBarPopoverController.m
|
|
// project: BlockBlock (login item)
|
|
// description: popover for status bar
|
|
//
|
|
// created by Patrick Wardle
|
|
// copyright (c) 2017 Objective-See. All rights reserved.
|
|
//
|
|
|
|
#import "AppDelegate.h"
|
|
#import "StatusBarPopoverController.h"
|
|
|
|
@implementation StatusBarPopoverController
|
|
|
|
//'close' button handler
|
|
// simply dismiss/close popover
|
|
-(IBAction)closePopover:(NSControl *)sender
|
|
{
|
|
//close
|
|
[[[self view] window] close];
|
|
|
|
return;
|
|
}
|
|
|
|
@end
|