summaryrefslogtreecommitdiff
path: root/mkvtool-gui/MainWindow.axaml.cs
diff options
context:
space:
mode:
authorac79b0c6 <[email protected]>2022-05-21 00:07:38 +0800
committerac79b0c6 <[email protected]>2022-05-21 00:07:38 +0800
commit476af930619eba5cafb6b71d3cf9bc8257013be9 (patch)
treebfe50896aa7b707716c1d374fbb8b41443507455 /mkvtool-gui/MainWindow.axaml.cs
parent35ca76e3cad6526b65b6a68136e5e2b54038c80e (diff)
update mkvtool-gui
Diffstat (limited to 'mkvtool-gui/MainWindow.axaml.cs')
-rw-r--r--mkvtool-gui/MainWindow.axaml.cs6
1 files changed, 4 insertions, 2 deletions
diff --git a/mkvtool-gui/MainWindow.axaml.cs b/mkvtool-gui/MainWindow.axaml.cs
index 4a17d4e..a44abd7 100644
--- a/mkvtool-gui/MainWindow.axaml.cs
+++ b/mkvtool-gui/MainWindow.axaml.cs
@@ -635,11 +635,13 @@ namespace mkvtool
bool ck = this.FindControl<ToggleSwitch>("ssa3").IsChecked == true;
bool cks = this.FindControl<ToggleSwitch>("ssa4").IsChecked == true;
bool n = this.FindControl<ToggleSwitch>("ssa5").IsChecked == true;
- string pr = this.FindControl<TextBox>("ssa6").Text;
- string pf = this.FindControl<TextBox>("ssa7").Text;
+ bool no = this.FindControl<ToggleSwitch>("ssa6").IsChecked == true;
+ string pr = this.FindControl<TextBox>("ssa7").Text;
+ string pf = this.FindControl<TextBox>("ssa8").Text;
mkvlib.A2P(a2p, apc, pr, pf);
mkvlib.Check(ck, cks);
mkvlib.NRename(n);
+ mkvlib.NOverwrite(no);
}
void PrintResult(string str1, string str2)