Browse Source

Remove alphaLabel from MenuBar.

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

+ 3
- 4
src/app/MenuBar.cpp View File

@@ -881,10 +881,9 @@ struct MenuBar : widget::OpaqueWidget {
helpButton->text = "Help"; helpButton->text = "Help";
layout->addChild(helpButton); layout->addChild(helpButton);


ui::Label* alphaLabel = new ui::Label;
alphaLabel->color.a = 0.5;
alphaLabel->text = "Pre-alpha build. Not for release.";
layout->addChild(alphaLabel);
// ui::Label* titleLabel = new ui::Label;
// titleLabel->color.a = 0.5;
// layout->addChild(titleLabel);


meterLabel = new MeterLabel; meterLabel = new MeterLabel;
meterLabel->box.pos.y = margin; meterLabel->box.pos.y = margin;


Loading…
Cancel
Save