diff --git a/plugins/editor/layout/main.fl b/plugins/editor/layout/main.fl index 9baf34ec..dd9081c4 100644 --- a/plugins/editor/layout/main.fl +++ b/plugins/editor/layout/main.fl @@ -150,7 +150,7 @@ widget_class mainView {open xywh {740 15 15 85} box BORDER_BOX class VMeter } - Fl_Box rightMeter_ {selected + Fl_Box rightMeter_ { xywh {760 15 15 85} box BORDER_BOX class VMeter } @@ -361,7 +361,7 @@ widget_class mainView {open } } Fl_Group {} { - label Theme open + label Appearance open selected xywh {40 270 105 100} box ROUNDED_BOX labelsize 12 align 17 class TitleGroup } { @@ -370,6 +370,11 @@ widget_class mainView {open xywh {60 330 65 25} labelsize 12 textsize 12 class OptionMenu } + Fl_Box {} { + label Theme + xywh {50 295 80 25} labelsize 12 + class ValueLabel + } } } Fl_Box piano_ { diff --git a/plugins/editor/src/editor/layout/main.hpp b/plugins/editor/src/editor/layout/main.hpp index 936db5da..7d49bb7c 100644 --- a/plugins/editor/src/editor/layout/main.hpp +++ b/plugins/editor/src/editor/layout/main.hpp @@ -188,11 +188,13 @@ view__67->addView(view__70); auto* const view__71 = createValueMenu(CRect(100, 60, 180, 85), kTagSetOscillatorQuality, "", kCenterText, 12); oscillatorQualitySlider_ = view__71; view__67->addView(view__71); -auto* const view__72 = createTitleGroup(CRect(35, 161, 140, 261), -1, "Theme", kCenterText, 12); +auto* const view__72 = createTitleGroup(CRect(35, 161, 140, 261), -1, "Appearance", kCenterText, 12); view__47->addView(view__72); auto* const view__73 = createOptionMenu(CRect(20, 60, 85, 85), kTagThemeMenu, "", kCenterText, 12); themeMenu_ = view__73; view__72->addView(view__73); -auto* const view__74 = createPiano(CRect(5, 400, 795, 470), -1, "", kCenterText, 12); -piano_ = view__74; -view__0->addView(view__74); +auto* const view__74 = createValueLabel(CRect(10, 25, 90, 50), -1, "Theme", kCenterText, 12); +view__72->addView(view__74); +auto* const view__75 = createPiano(CRect(5, 400, 795, 470), -1, "", kCenterText, 12); +piano_ = view__75; +view__0->addView(view__75);