From c4cd7748f669008222a48383e653363b8d578c88 Mon Sep 17 00:00:00 2001 From: Serge <5920850+seerge@users.noreply.github.com> Date: Sun, 11 Feb 2024 12:06:54 +0100 Subject: [PATCH] UI tweaks --- app/Settings.Designer.cs | 2 +- app/Settings.cs | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/app/Settings.Designer.cs b/app/Settings.Designer.cs index 97941447..73fd98a7 100644 --- a/app/Settings.Designer.cs +++ b/app/Settings.Designer.cs @@ -194,7 +194,7 @@ namespace GHelper tableLayoutMatrix.Location = new Point(20, 60); tableLayoutMatrix.Margin = new Padding(8); tableLayoutMatrix.Name = "tableLayoutMatrix"; - tableLayoutMatrix.RowCount = 2; + tableLayoutMatrix.RowCount = 1; tableLayoutMatrix.RowStyles.Add(new RowStyle(SizeType.Percent, 100F)); tableLayoutMatrix.RowStyles.Add(new RowStyle(SizeType.Absolute, 20F)); tableLayoutMatrix.Size = new Size(787, 84); diff --git a/app/Settings.cs b/app/Settings.cs index 9094b3b5..bf1fdddc 100644 --- a/app/Settings.cs +++ b/app/Settings.cs @@ -909,10 +909,11 @@ namespace GHelper labelMatrix.Text = "Slash Lightning"; comboMatrixRunning.Items.Clear(); comboMatrixRunning.Items.Add("Transmission"); - comboMatrixRunning.Items.Add("Bitstream"); + comboMatrixRunning.Items.Add("Bit Stream"); comboInterval.Visible = true; - for (int i = 0; i <= 5; i++) comboInterval.Items.Add($"Interval {i}s"); + comboInterval.Items.Add($"Interval Off"); + for (int i = 1; i <= 5; i++) comboInterval.Items.Add($"Interval {i}s"); buttonMatrix.Visible = false; }