From 11e549bc501c2245ff8a701dcb10ad9f87cbea3e Mon Sep 17 00:00:00 2001 From: "Khan, Arshad" Date: Mon, 11 Nov 2019 22:47:49 +0530 Subject: [PATCH] Feedback implementation impact changes. --- .../TopLabelsAndBottomButtonsTableViewController.m | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/MVMCoreUI/LegacyControllers/TopLabelsAndBottomButtonsTableViewController.m b/MVMCoreUI/LegacyControllers/TopLabelsAndBottomButtonsTableViewController.m index 5d6a6778..8b0a23bf 100644 --- a/MVMCoreUI/LegacyControllers/TopLabelsAndBottomButtonsTableViewController.m +++ b/MVMCoreUI/LegacyControllers/TopLabelsAndBottomButtonsTableViewController.m @@ -427,13 +427,13 @@ if ([self.bottomView isKindOfClass:[TwoButtonView class]]) { TwoButtonView *buttonView = (TwoButtonView *)self.bottomView; if (right && !left) { - [buttonView hidePrimaryRightButton]; + [buttonView hideRightButton]; } else if (!right && left) { - [buttonView hidePrimaryLeftButton]; + [buttonView hideLeftButton]; } else if (right && left) { - [buttonView hideBothPrimaryButtons]; + [buttonView hideBothButtons]; } else if (!right && !left) { - [buttonView showBothPrimaryButtons]; + [buttonView showBothButtons]; } } }