Skip to content

Commit 968992a

Browse files
authored
Merge pull request aburch#7 from jamespetts/master
CHANGE: Reduce the minimum size of the ship depot window to match tha…
2 parents f2297bc + 5da47ef commit 968992a

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

gui/components/gui_convoy_assembler.cc

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -308,10 +308,7 @@ scr_coord gui_convoy_assembler_t::get_placement(waytype_t wt)
308308

309309
scr_coord gui_convoy_assembler_t::get_grid(waytype_t wt)
310310
{
311-
if (wt==water_wt) {
312-
return scr_coord(60,46);
313-
}
314-
if (wt==air_wt) {
311+
if (wt==water_wt || wt==air_wt) {
315312
return scr_coord(36,36);
316313
}
317314
return scr_coord(24,24);

0 commit comments

Comments
 (0)