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:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user