1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-16 15:29:55 +00:00

Merge branch 'count' into 'master'

Improve item count handling

See merge request OpenMW/openmw!2430
This commit is contained in:
psi29a 2022-09-25 13:38:33 +00:00
commit f7da42870e
3 changed files with 5 additions and 5 deletions

View file

@ -40,7 +40,7 @@ namespace MWGui
mSlider->setScrollRange(maxCount);
mItemText->setCaption(item);
int width = std::max(mItemText->getTextSize().width + 128, 320);
int width = std::max(mItemText->getTextSize().width + 160, 320);
setCoord(viewSize.width / 2 - width / 2, viewSize.height / 2 - mMainWidget->getHeight() / 2, width,
mMainWidget->getHeight());

View file

@ -30,11 +30,11 @@ namespace
{
if (count > 999999999)
return MyGUI::utility::toString(count / 1000000000) + "b";
else if (count > 9999999)
else if (count > 99999999)
return ">9m";
else if (count > 999999)
return MyGUI::utility::toString(count / 1000000) + "m";
else if (count > 9999)
else if (count > 99999)
return ">9k";
else if (count > 999)
return MyGUI::utility::toString(count / 1000) + "k";

View file

@ -5,10 +5,10 @@
<Widget type="TextBox" skin="SandText" position="0 4 592 24" align="Left Top HStretch" name="LabelText">
<Property key="TextAlign" value="Center"/>
</Widget>
<Widget type="TextBox" skin="SandText" position="12 36 521 24" align="Left Top HStretch" name="ItemText">
<Widget type="TextBox" skin="SandText" position="12 36 471 24" align="Left Top HStretch" name="ItemText">
<Property key="TextAlign" value="Left"/>
</Widget>
<Widget type="NumericEditBox" skin="MW_TextEdit" position="535 36 50 24" align="Right Top" name="ItemEdit">
<Widget type="NumericEditBox" skin="MW_TextEdit" position="485 36 100 24" align="Right Top" name="ItemEdit">
<Property key="TextAlign" value="Center"/>
</Widget>
<Widget type="ScrollBar" skin="MW_HScroll" position="7 67 578 18" align="Left Top HStretch" name="CountSlider">