mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 14:15:38 +00:00
Made two text label fields wider in the scraper credentials menu
This commit is contained in:
parent
bc13c93c53
commit
54dee3ac57
|
@ -200,9 +200,13 @@ void GuiSettings::addEditableTextComponent(const std::string label,
|
|||
auto lbl = std::make_shared<TextComponent>(Utils::String::toUpper(label),
|
||||
Font::get(FONT_SIZE_MEDIUM), mMenuColorPrimary,
|
||||
ALIGN_LEFT, ALIGN_CENTER, glm::ivec2 {0, 0});
|
||||
row.addElement(lbl, true);
|
||||
row.addElement(lbl, false);
|
||||
row.addElement(ed, true);
|
||||
|
||||
const float maxLabelWidth {mMenu.getSize().x * 0.65f};
|
||||
lbl->setSize(glm::clamp(lbl->getTextCache()->metrics.size.x, 0.0f, maxLabelWidth),
|
||||
lbl->getSize().y);
|
||||
|
||||
auto spacer = std::make_shared<GuiComponent>();
|
||||
spacer->setSize(Renderer::getScreenWidth() * 0.005f, 0.0f);
|
||||
row.addElement(spacer, false);
|
||||
|
|
Loading…
Reference in a new issue