mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-01-18 07:05:39 +00:00
Fixed an issue where the OptionList arrows would not get correctly centered vertically.
This commit is contained in:
parent
59839546a5
commit
28f0f8549c
|
@ -91,11 +91,11 @@ public:
|
||||||
mText.getFont()->getHeight());
|
mText.getFont()->getHeight());
|
||||||
|
|
||||||
// Position.
|
// Position.
|
||||||
mLeftArrow.setPosition(0.0f, (mSize.y - mLeftArrow.getSize().y) / 2.0f);
|
mLeftArrow.setPosition(0.0f, std::round((mSize.y - mLeftArrow.getSize().y) / 2.0f));
|
||||||
mText.setPosition(mLeftArrow.getPosition().x + mLeftArrow.getSize().x,
|
mText.setPosition(mLeftArrow.getPosition().x + mLeftArrow.getSize().x,
|
||||||
(mSize.y - mText.getSize().y) / 2.0f);
|
(mSize.y - mText.getSize().y) / 2.0f);
|
||||||
mRightArrow.setPosition(mText.getPosition().x + mText.getSize().x,
|
mRightArrow.setPosition(mText.getPosition().x + mText.getSize().x,
|
||||||
(mSize.y - mRightArrow.getSize().y) / 2.0f);
|
std::round((mSize.y - mRightArrow.getSize().y) / 2.0f));
|
||||||
}
|
}
|
||||||
|
|
||||||
bool input(InputConfig* config, Input input) override
|
bool input(InputConfig* config, Input input) override
|
||||||
|
|
Loading…
Reference in a new issue