mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-26 22:57:00 +02:00
Fix: Issue #3151 - text centralization
This commit is contained in:
parent
12a4cee092
commit
e7665ba5de
@ -367,8 +367,10 @@ CGStatusBar::CGStatusBar(int x, int y, std::string name, int maxw)
|
|||||||
OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
|
OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
|
||||||
background = std::make_shared<CPicture>(name);
|
background = std::make_shared<CPicture>(name);
|
||||||
pos = background->pos;
|
pos = background->pos;
|
||||||
if(maxw < pos.w)
|
|
||||||
|
if((unsigned)maxw < (unsigned)pos.w) //(insigned)-1 > than any correct value of pos.w
|
||||||
{
|
{
|
||||||
|
//execution of this block when maxw is incorrect breaks text centralization (issue #3151)
|
||||||
vstd::amin(pos.w, maxw);
|
vstd::amin(pos.w, maxw);
|
||||||
background->srcRect = new Rect(0, 0, maxw, pos.h);
|
background->srcRect = new Rect(0, 0, maxw, pos.h);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user