Skip to content

Commit

Permalink
good enough
Browse files Browse the repository at this point in the history
  • Loading branch information
altalk23 committed Feb 3, 2024
1 parent 3d10313 commit 706e70b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/EditorPauseLayer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ using namespace geode::node_ids;
menu->getChildByID("new-groupy-button")
);
smallActionsMenu->setContentSize({ 100.f, 290.f });
smallActionsMenu->setPositionY(180.f);
smallActionsMenu->setPositionY(155.f);
smallActionsMenu->updateLayout();

auto actionsMenu = detachAndCreateMenu(
Expand All @@ -170,15 +170,15 @@ using namespace geode::node_ids;
if (auto keysBtn = actionsMenu->getChildByID("keys-button")) {
keysBtn->setLayoutOptions(AxisLayoutOptions::create()->setPrevGap(10.f));
}
actionsMenu->setContentSize({ 100.f, 240.f });
actionsMenu->setPositionY(130.f);
actionsMenu->setContentSize({ 100.f, 290.f });
actionsMenu->setPositionY(155.f);
actionsMenu->updateLayout();

auto optionsMenu = detachAndCreateMenu(
this,
"options-menu",
RowLayout::create()
->setGap(0.f)
->setGap(5.f)
->setAxisAlignment(AxisAlignment::Start)
->setGrowCrossAxis(true)
->setCrossAxisAlignment(AxisAlignment::Start)
Expand Down Expand Up @@ -220,8 +220,8 @@ using namespace geode::node_ids;
}
}
// uhh can someone with devtools change these values
optionsMenu->setContentSize({ 120.f, winSize.height - 100.f });
optionsMenu->setPosition(70.f, winSize.height / 2 - 50.f + 10.f);
optionsMenu->setContentSize({ 120.f, winSize.height - 60.f });
optionsMenu->setPosition(70.f, winSize.height / 2 - 25.f + 10.f);
optionsMenu->updateLayout();

auto settingsMenu = detachAndCreateMenu(
Expand Down

0 comments on commit 706e70b

Please sign in to comment.