mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-06-24 06:00:05 +01:00
(svn r18165) -Codechange: make company dropdowns RTL aware
This commit is contained in:
parent
76a5f4f8cd
commit
0fc733f3a0
@ -162,11 +162,12 @@ public:
|
|||||||
void Draw(int left, int right, int top, int bottom, bool sel, int bg_colour) const
|
void Draw(int left, int right, int top, int bottom, bool sel, int bg_colour) const
|
||||||
{
|
{
|
||||||
CompanyID company = (CompanyID)result;
|
CompanyID company = (CompanyID)result;
|
||||||
|
bool rtl = _dynlang.text_dir == TD_RTL;
|
||||||
|
|
||||||
/* It's possible the company is deleted while the dropdown is open */
|
/* It's possible the company is deleted while the dropdown is open */
|
||||||
if (!Company::IsValidID(company)) return;
|
if (!Company::IsValidID(company)) return;
|
||||||
|
|
||||||
DrawCompanyIcon(company, left + 2, top + 1);
|
DrawCompanyIcon(company, rtl ? right - 16 : left + 2, top + 1);
|
||||||
|
|
||||||
SetDParam(0, company);
|
SetDParam(0, company);
|
||||||
SetDParam(1, company);
|
SetDParam(1, company);
|
||||||
@ -176,7 +177,7 @@ public:
|
|||||||
} else {
|
} else {
|
||||||
col = sel ? TC_WHITE : TC_BLACK;
|
col = sel ? TC_WHITE : TC_BLACK;
|
||||||
}
|
}
|
||||||
DrawString(left + 19, right - 2, top, STR_COMPANY_NAME_COMPANY_NUM, col);
|
DrawString(rtl ? left + 2 : left + 19, rtl ? right - 19 : right - 2, top, STR_COMPANY_NAME_COMPANY_NUM, col);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user