From 57b77e4a2d25d50834c3e0818b5b3713d402d556 Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Sun, 20 Jun 2021 18:25:39 -0400 Subject: [PATCH] Make alpha status a Label in MenuBar. --- src/app/MenuBar.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/MenuBar.cpp b/src/app/MenuBar.cpp index dccc02d6..e69306e8 100644 --- a/src/app/MenuBar.cpp +++ b/src/app/MenuBar.cpp @@ -1109,7 +1109,8 @@ struct MenuBar : widget::OpaqueWidget { helpButton->text = "Help"; layout->addChild(helpButton); - ui::MenuLabel* alphaLabel = new ui::MenuLabel; + ui::Label* alphaLabel = new ui::Label; + alphaLabel->color.a = 0.5; alphaLabel->text = "Pre-alpha build. Not for release."; layout->addChild(alphaLabel);