From fd3cb18fe4a4da81cefcb96db34b19d7ad5f45f9 Mon Sep 17 00:00:00 2001 From: Chad Little Date: Mon, 7 Aug 2017 13:34:00 +0000 Subject: [PATCH] Don't force buttons to grey with PHUIInfoView Summary: I'd like to use red buttons. Test Plan: Set a button to red in InfoView, see red button. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D18352 --- src/view/phui/PHUIInfoView.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/view/phui/PHUIInfoView.php b/src/view/phui/PHUIInfoView.php index 8ba74056b8..18f5af3374 100644 --- a/src/view/phui/PHUIInfoView.php +++ b/src/view/phui/PHUIInfoView.php @@ -95,7 +95,6 @@ private function getIcon() { } public function addButton(PHUIButtonView $button) { - $button->setColor(PHUIButtonView::GREY); $this->buttons[] = $button; return $this; }