summaryrefslogtreecommitdiff
path: root/src/rail_gui.cpp
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2013-06-30 14:33:15 +0000
committerfrosch <frosch@openttd.org>2013-06-30 14:33:15 +0000
commit5f8f71edf069a7298fa2b435ca9ee63a625d778f (patch)
treec53dde1e3afde5a7c5c85d88094f5a71a5d5ba12 /src/rail_gui.cpp
parent98fdd20f84c5d1dc64b8b07dca533fc41be4d8e3 (diff)
downloadopenttd-5f8f71edf069a7298fa2b435ca9ee63a625d778f.tar.xz
(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.
Diffstat (limited to 'src/rail_gui.cpp')
-rw-r--r--src/rail_gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rail_gui.cpp b/src/rail_gui.cpp
index 03219e062..a3642e5c3 100644
--- a/src/rail_gui.cpp
+++ b/src/rail_gui.cpp
@@ -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;
}