Clicking "Join" to join a new network now properly closes the popover

This commit is contained in:
Grant Limberg 2016-10-17 13:43:27 -07:00
commit ed58467d12
3 changed files with 9 additions and 3 deletions

View file

@ -11,6 +11,8 @@
extern NSString * const JoinedNetworksKey;
@class AppDelegate;
@interface JoinNetworkViewController : NSViewController <NSComboBoxDelegate, NSComboBoxDataSource>
@property (nonatomic, weak) IBOutlet NSComboBox *network;
@ -18,6 +20,7 @@ extern NSString * const JoinedNetworksKey;
@property (nonatomic, weak) IBOutlet NSButton *allowManagedCheckBox;
@property (nonatomic, weak) IBOutlet NSButton *allowGlobalCheckBox;
@property (nonatomic, weak) IBOutlet NSButton *allowDefaultCheckBox;
@property (nonatomic, weak) IBOutlet AppDelegate *appDelegate;
@property (nonatomic) NSMutableArray<NSString*> *values;