File tree Expand file tree Collapse file tree 3 files changed +70
-49
lines changed Expand file tree Collapse file tree 3 files changed +70
-49
lines changed Original file line number Diff line number Diff line change 17
17
@interface DashboardViewController : NSViewController <NSTableViewDelegate , NSTableViewDataSource >{
18
18
__weak IBOutlet NSLayoutConstraint *actionViewHeightConstraint;
19
19
}
20
+ @property (weak ) IBOutlet NSView *openURLView;
21
+ @property (weak ) IBOutlet NSView *cloneURLView;
22
+ @property (weak ) IBOutlet NSView *showQRCodeView;
23
+ @property (weak ) IBOutlet NSView *deleteBuildView;
24
+ @property (weak ) IBOutlet NSView *provisioningProfileView;
25
+ @property (weak ) IBOutlet NSView *showInFinderView;
26
+ @property (weak ) IBOutlet NSView *showInDropboxView;
20
27
21
28
@property (weak ) IBOutlet NSTableView *dashboardTableView;
22
29
@end
Original file line number Diff line number Diff line change @@ -96,6 +96,13 @@ -(void)setActionButtonViewHidden:(BOOL)hidden{
96
96
context.duration = 0.25 ;
97
97
context.allowsImplicitAnimation = YES ;
98
98
actionViewHeightConstraint.constant = hidden ? 0 : 65 ;
99
+ self.openURLView .hidden = hidden;
100
+ self.cloneURLView .hidden = hidden;
101
+ self.showQRCodeView .hidden = hidden;
102
+ self.deleteBuildView .hidden = hidden;
103
+ self.provisioningProfileView .hidden = hidden;
104
+ self.showInFinderView .hidden = hidden;
105
+ self.showInDropboxView .hidden = hidden;
99
106
[self .view layoutSubtreeIfNeeded ];
100
107
} completionHandler: nil ];
101
108
}
You can’t perform that action at this time.
0 commit comments