mirror of
https://github.com/imrayya/SRTto3Dsubtitles.git
synced 2026-09-21 10:17:27 +02:00
fix: wire up Convert button Click handler (was never attached)
This commit is contained in:
Generated
+2
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user