From a188de84cb5c5e8066113fdc07b0474cc4902c9d Mon Sep 17 00:00:00 2001 From: "Hedden, Kyle Matthew" Date: Mon, 28 Oct 2019 08:55:44 -0400 Subject: [PATCH] Bugfix/gray safe area for fixed buttons --- .../TopLabelsAndBottomButtonsTableViewController.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MVMCoreUI/LegacyControllers/TopLabelsAndBottomButtonsTableViewController.m b/MVMCoreUI/LegacyControllers/TopLabelsAndBottomButtonsTableViewController.m index 1c90d9e0..5d6a6778 100644 --- a/MVMCoreUI/LegacyControllers/TopLabelsAndBottomButtonsTableViewController.m +++ b/MVMCoreUI/LegacyControllers/TopLabelsAndBottomButtonsTableViewController.m @@ -330,7 +330,7 @@ bottomViewBot.active = YES; UIView *safeAreaView = [MVMCoreUICommonViewsUtility getAndSetupSafeAreaViewOnView:self.view]; - safeAreaView.backgroundColor = footerView.backgroundColor; + safeAreaView.backgroundColor = self.bottomView.backgroundColor; self.safeAreaView = safeAreaView; [NSLayoutConstraint activateConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"H:|-0-[footerView]-0@900-|" options:NSLayoutFormatDirectionLeadingToTrailing metrics:nil views:NSDictionaryOfVariableBindings(footerView)]];