Skip to content
This repository was archived by the owner on Jul 31, 2023. It is now read-only.

Commit c148ca1

Browse files
committed
Fix chapter removal
1 parent 4135c4a commit c148ca1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/io/github/brunorex/JMkvpropedit.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -3905,12 +3905,12 @@ private void setCmdLineGeneral() {
39053905
switch (cbChapters.getSelectedIndex()) {
39063906
case 0:
39073907
cmdLineGeneral[i] += " --chapters \"\"";
3908-
cmdLineGeneralOpt[i] += " --chapters #EMPTY#";
3908+
cmdLineGeneralOpt[i] += " --chapters ''";
39093909
break;
39103910
case 1:
39113911
if (txtChapters.getText().trim().isEmpty()) {
39123912
cmdLineGeneral[i] += " --chapters \"\"";
3913-
cmdLineGeneralOpt[i] += " --chapters #EMPTY#";
3913+
cmdLineGeneralOpt[i] += " --chapters ''";
39143914
} else {
39153915
if (Utils.isWindows()) {
39163916
cmdLineGeneral[i] += " --chapters \"" + txtChapters.getText() + "\"";

0 commit comments

Comments
 (0)