summaryrefslogtreecommitdiffstats
path: root/win/C#
diff options
context:
space:
mode:
authorsr55 <[email protected]>2007-12-19 19:07:30 +0000
committersr55 <[email protected]>2007-12-19 19:07:30 +0000
commitabe87eb4f8f239a6f950d8a549a5d9b75bc36365 (patch)
tree1ba2d3459d8ea287e0a15fd735bc794a9ac2f25f /win/C#
parentf84d9ee74de109228ca6d8f56df05c8610e93e5f (diff)
WinGui:
- 2 Small fixes to the new Chapters tab git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1135 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#')
-rw-r--r--win/C#/frmMain.cs14
1 files changed, 11 insertions, 3 deletions
diff --git a/win/C#/frmMain.cs b/win/C#/frmMain.cs
index 721d9b637..407d00be7 100644
--- a/win/C#/frmMain.cs
+++ b/win/C#/frmMain.cs
@@ -1928,15 +1928,23 @@ namespace Handbrake
data_chpt.Rows.Clear();
int i = 0;
int rowCount = 0;
+ int start = 0;
+ int finish = 0;
if (drop_chapterFinish.Text != "Auto")
- rowCount = int.Parse(drop_chapterFinish.Text);
+ finish = int.Parse(drop_chapterFinish.Text);
+
+ if (drop_chapterStart.Text != "Auto")
+ start = int.Parse(drop_chapterStart.Text);
+
+ rowCount = finish - (start -1);
+
while (i < rowCount)
{
DataGridViewRow row = new DataGridViewRow();
data_chpt.Rows.Insert(i, row);
data_chpt.Rows[i].Cells[0].Value = (i + 1);
- data_chpt.Rows[i].Cells[1].Value = "Chapter" + (i + 1);
+ data_chpt.Rows[i].Cells[1].Value = "Chapter " + (i + 1);
i++;
}
}
@@ -1962,7 +1970,7 @@ namespace Handbrake
csv.Append(row.Cells[0].Value.ToString());
csv.Append(",");
csv.Append(row.Cells[1].Value.ToString());
- csv.Append("\n");
+ csv.Append(Environment.NewLine);
}
StreamWriter file = new StreamWriter(path);