(svn r25532) -Fix: Do not make the minimal size of matrix or panel widgets depend on their number of rows, since that changes when resizing the window.

This commit is contained in:
frosch
2013-06-30 14:33:15 +00:00
parent f6d27acb51
commit ac73a5fea6
5 changed files with 11 additions and 7 deletions

View File

@@ -1037,7 +1037,7 @@ public:
}
size->width = max(size->width, d.width + padding.width);
this->line_height = FONT_HEIGHT_NORMAL + WD_MATRIX_TOP + WD_MATRIX_BOTTOM;
size->height = GB(this->GetWidget<NWidgetCore>(widget)->widget_data, MAT_ROW_START, MAT_ROW_BITS) * this->line_height;
size->height = 5 * this->line_height;
resize->height = this->line_height;
break;
}