Withdraw 30 sheets at a time from fabs (#5663)

adds 30 to sheetsToEjectArray, and reduces button MinWidth from 45 to 35 in MaterialDisplay.xaml.cs
This commit is contained in:
mazie 2026-04-13 23:29:05 -07:00 committed by GitHub
parent 4d205c3b8b
commit c92c730502
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -71,7 +71,7 @@ public sealed partial class MaterialDisplay : PanelContainer
if (!_canEject)
return;
int[] sheetsToEjectArray = { 1, 5, 10 };
int[] sheetsToEjectArray = { 1, 5, 10, 30 }; // DeltaV - added 30 to array
for (var i = 0; i < sheetsToEjectArray.Length; i++)
{
@ -88,7 +88,7 @@ public sealed partial class MaterialDisplay : PanelContainer
Name = $"{sheetsToEject}",
Access = AccessLevel.Public,
Text = Loc.GetString($"{sheetsToEject}"),
MinWidth = 45,
MinWidth = 35, // DeltaV - reduced from 45 to accomodate extra button
StyleClasses = { styleClass }
};