1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-12 09:09:09 +00:00

(svn r9435) -Fix (r8972): ensure the cargo payment graph is at least 12 "items" high

This commit is contained in:
2007-03-24 18:56:59 +00:00
parent bea0993015
commit fc540fcd0d

View File

@@ -796,7 +796,7 @@ void ShowCargoPaymentRates()
}
/* Resize the window to fit the cargo types */
ResizeWindow(w, 0, num_active * 8);
ResizeWindow(w, 0, max(num_active, 12U) * 8);
/* Add widgets for each cargo type */
w->widget_count += num_active;