1
0
Fork 0

Cleanup: Let GetStringBoundingBox deal with buffer.

pull/10654/head
Peter Nelson 2023-04-12 12:21:07 +01:00 committed by PeterN
parent 701092003d
commit 5bc9d00735
1 changed files with 1 additions and 3 deletions

View File

@ -33,9 +33,7 @@ void DropDownListItem::Draw(const Rect &r, bool sel, Colours bg_colour) const
uint DropDownListStringItem::Width() const uint DropDownListStringItem::Width() const
{ {
char buffer[512]; return GetStringBoundingBox(this->String()).width + WidgetDimensions::scaled.dropdowntext.Horizontal();
GetString(buffer, this->String(), lastof(buffer));
return GetStringBoundingBox(buffer).width + WidgetDimensions::scaled.dropdowntext.Horizontal();
} }
void DropDownListStringItem::Draw(const Rect &r, bool sel, Colours bg_colour) const void DropDownListStringItem::Draw(const Rect &r, bool sel, Colours bg_colour) const