some naming fixes

This commit is contained in:
Pfeil, Scott Robert 2019-01-16 11:31:48 -05:00
parent 999429f6bb
commit a5b08a80f7
3 changed files with 3 additions and 13 deletions

View File

@ -68,9 +68,6 @@
/* The bottom progress view that is shown in the shop flow */ /* The bottom progress view that is shown in the shop flow */
@property (nullable, nonatomic, strong) UIProgressView *progressView; @property (nullable, nonatomic, strong) UIProgressView *progressView;
// a flag that tells the view controller's view will appear not trying to load specaill support icon
@property (assign, nonatomic) BOOL DontChangeSpecialSupportIcon;
// The size of the previous screen configuration. Updates each rotate. // The size of the previous screen configuration. Updates each rotate.
@property (nonatomic) CGSize previousScreenSize; @property (nonatomic) CGSize previousScreenSize;

View File

@ -73,7 +73,7 @@ typedef NS_ENUM(NSInteger, MFNumberOfDrawers) {
// reset drawers // reset drawers
- (void)resetDrawers; - (void)resetDrawers;
// contains speicaly logic to set the support icon color // contains speicaly logic to set the icon color
- (void)setNavigationIconColor:(nullable UIColor *)color; - (void)setNavigationIconColor:(nullable UIColor *)color;
#pragma mark - Bottom Progress Bar #pragma mark - Bottom Progress Bar
@ -97,9 +97,6 @@ typedef NS_ENUM(NSInteger, MFNumberOfDrawers) {
// Provides the height of the detail view. // Provides the height of the detail view.
+ (CGFloat)getDetailViewHeight; + (CGFloat)getDetailViewHeight;
// Provides the width of the support view
+ (CGFloat)getSupportWidth;
// Provides the width of the main application view. // Provides the width of the main application view.
+ (CGFloat)getApplicationViewWidth; + (CGFloat)getApplicationViewWidth;
+ (CGFloat)getApplicationViewMaxSize; + (CGFloat)getApplicationViewMaxSize;

View File

@ -284,7 +284,7 @@ CGFloat const PanelAnimationDuration = 0.2;
self.mainViewCoverView.alpha = 0; self.mainViewCoverView.alpha = 0;
self.mainViewLeading.constant = 0; self.mainViewLeading.constant = 0;
// If the support drawer should be extended, make sure it's extended. // If the right drawer should be extended, make sure it's extended.
if (checkingForOtherExtendedDrawers && self.rightPanelIsAccessible && [self shouldExtendRightPanel]) { if (checkingForOtherExtendedDrawers && self.rightPanelIsAccessible && [self shouldExtendRightPanel]) {
void (^showRightPanel)(void) = [self getRightPanelShowAnimationBlock]; void (^showRightPanel)(void) = [self getRightPanelShowAnimationBlock];
showRightPanel(); showRightPanel();
@ -394,7 +394,7 @@ CGFloat const PanelAnimationDuration = 0.2;
// No drawer is extended. // No drawer is extended.
return NO; return NO;
} else { } else {
// Extend support if the master panel isn't prioritized. // Extend right if the left panel isn't prioritized.
return self.prioritizedExtendedPanel != self.leftPanel; return self.prioritizedExtendedPanel != self.leftPanel;
} }
} }
@ -881,10 +881,6 @@ CGFloat const PanelAnimationDuration = 0.2;
return CGRectGetHeight([self getBounds:[MVMCoreUISession sharedGlobal].splitViewController.mainView]); return CGRectGetHeight([self getBounds:[MVMCoreUISession sharedGlobal].splitViewController.mainView]);
} }
+ (CGFloat)getSupportWidth {
return CGRectGetWidth([MVMCoreUISession sharedGlobal].splitViewController.rightView.bounds);
}
+ (CGFloat)getApplicationViewWidth { + (CGFloat)getApplicationViewWidth {
return CGRectGetWidth([self getBounds:[MVMCoreUISession sharedGlobal].splitViewController.view.superview]); return CGRectGetWidth([self getBounds:[MVMCoreUISession sharedGlobal].splitViewController.view.superview]);
} }