fix: wire up Convert button Click handler (was never attached)

This commit is contained in:
Kareem Horstink
2026-06-25 17:04:18 +00:00
parent 9b7b8df874
commit 1c5d2e3934
+2
View File
@@ -97,6 +97,7 @@ partial class Form1
DropDownStyle = ComboBoxStyle.DropDownList DropDownStyle = ComboBoxStyle.DropDownList
}; };
comboBox_Mode.Items.AddRange(["SBS (Side-by-Side)", "OU (Over-Under)", "RG (Red-Green)"]); comboBox_Mode.Items.AddRange(["SBS (Side-by-Side)", "OU (Over-Under)", "RG (Red-Green)"]);
comboBox_Mode.SelectedIndexChanged += comboBox_Mode_SelectedIndexChanged;
groupBox_Mode.Controls.AddRange([label_Mode, comboBox_Mode]); groupBox_Mode.Controls.AddRange([label_Mode, comboBox_Mode]);
// ---- Resolution section ---- // ---- Resolution section ----
@@ -167,6 +168,7 @@ partial class Form1
ForeColor = Color.White, ForeColor = Color.White,
FlatAppearance = { BorderSize = 0 } FlatAppearance = { BorderSize = 0 }
}; };
button_Convert.Click += button_Convert_Click;
// ---- Status ---- // ---- Status ----
textBox_Status = new TextBox textBox_Status = new TextBox