(svn r27255) -Fix [FS#6270]: Combined button+dropdown widgets in order and autoreplace GUI had incorrect hitbox when using GUI zoom. (_dp_)

This commit is contained in:
frosch 2015-04-26 11:07:41 +00:00
parent 7e12a1a985
commit 2639b84316
1 changed files with 2 additions and 2 deletions

View File

@ -2524,10 +2524,10 @@ void NWidgetLeaf::Draw(const Window *w)
bool NWidgetLeaf::ButtonHit(const Point &pt)
{
if (_current_text_dir == TD_LTR) {
int button_width = this->pos_x + this->current_x - 12;
int button_width = this->pos_x + this->current_x - NWidgetLeaf::dropdown_dimension.width;
return pt.x < button_width;
} else {
int button_left = this->pos_x + 12;
int button_left = this->pos_x + NWidgetLeaf::dropdown_dimension.width;
return pt.x >= button_left;
}
}