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:
parent
4d205c3b8b
commit
c92c730502
|
|
@ -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 }
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue