Browse Source

Make alpha status a Label in MenuBar.

tags/v2.0.0
Andrew Belt 3 years ago
parent
commit
57b77e4a2d
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      src/app/MenuBar.cpp

+ 2
- 1
src/app/MenuBar.cpp View File

@@ -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);



Loading…
Cancel
Save