Restore full-height MFD buttons

Playtest: the half-height red buttons did not read well; back to
display_height/8 (18..40px). The contiguous amber map columns stay.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Cyd
2026-07-12 15:33:54 -05:00
co-authored by Claude Fable 5
parent 04b968da70
commit 293e369656
+3 -3
View File
@@ -254,9 +254,9 @@ void
// 4 buttons above the glass, 4 below; RIO addresses descend
// from the anchor, row-major (vRIO CockpitLayout::Mfd).
//-----------------------------------------------------------
int strip_h = display_height / 16;
if (strip_h < 9) strip_h = 9;
if (strip_h > 20) strip_h = 20;
int strip_h = display_height / 8;
if (strip_h < 18) strip_h = 18;
if (strip_h > 40) strip_h = 40;
int button_w = (display_width - 5 * buttonGap) / 4;