Codechange: Remove unused parameter for Height()
DropDownListItem::Height does not need to take an argument so remove it Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
This commit is contained in:

committed by
rubidium42

parent
59a2abd298
commit
ac42dea7b2
@@ -597,7 +597,7 @@ public:
|
||||
return ScaleGUITrad(28) + WidgetDimensions::scaled.hsep_normal + GetStringBoundingBox(this->String()).width + WidgetDimensions::scaled.dropdowntext.Horizontal();
|
||||
}
|
||||
|
||||
uint Height(uint) const override
|
||||
uint Height() const override
|
||||
{
|
||||
return std::max(FONT_HEIGHT_NORMAL, ScaleGUITrad(12) + WidgetDimensions::scaled.vsep_normal);
|
||||
}
|
||||
|
Reference in New Issue
Block a user