Skip to content

Commit e45f14f

Browse files
Remove the obsolete Content tab from Options. Now part of the Content form, to be opened form the Menu by pressing the Content button
1 parent fe8369a commit e45f14f

File tree

6 files changed

+277
-650
lines changed

6 files changed

+277
-650
lines changed

Source/Menu/ContentForm.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ private void writeAndStartInfoFile()
293293
}
294294
if (route.getDownloadType() == ContentRouteSettings.DownloadType.zip)
295295
{
296-
outputFile.WriteLine(Catalog.GetString("<p>Downloadable: zip format<br>")); // qqq
296+
outputFile.WriteLine(Catalog.GetString("<p>Downloadable: zip format<br>"));
297297
outputFile.WriteLine(Catalog.GetStringFmt("- From: {0}<br>", route.Url));
298298
if (route.InstallSize > 0)
299299
{
@@ -1477,7 +1477,7 @@ string determineUniqueRoute(string Route)
14771477
{
14781478
if (dataGridViewManualInstall.Rows[i].Cells[0].Value.ToString() == route)
14791479
{
1480-
route = route + " copy";
1480+
route += " copy";
14811481
found = false;
14821482
}
14831483
}

Source/Menu/MainForm.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -561,7 +561,7 @@ void buttonOptions_Click(object sender, EventArgs e)
561561
{
562562
SaveOptions();
563563

564-
using (var form = new OptionsForm(Settings, UpdateManager, false))
564+
using (var form = new OptionsForm(Settings, UpdateManager))
565565
{
566566
switch (form.ShowDialog(this))
567567
{

0 commit comments

Comments
 (0)