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

pull/155/head
peter1138 18 years ago
parent 0aad93d1ce
commit 8ec3e58b48

@ -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;

Loading…
Cancel
Save