Skip to content

Commit 17d4624

Browse files
- added tooltip for datagrid Url field (field is too short)
- datagrid multi-select switched off - datagrid reszize switched off
1 parent 7af1f91 commit 17d4624

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

Source/Menu/DownloadContentForm.Designer.cs

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Source/Menu/DownloadContentForm.cs

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,13 @@ public DownloadContentForm(UserSettings settings)
7272

7373
dataGridViewDownloadContent.Sort(dataGridViewDownloadContent.Columns[0], ListSortDirection.Ascending);
7474

75+
for (int index = 0; index < Routes.Count; index++)
76+
{
77+
DataGridViewRow row = dataGridViewDownloadContent.Rows[index];
78+
DataGridViewCell cell = row.Cells[2];
79+
cell.ToolTipText = cell.Value.ToString();
80+
}
81+
7582
InstallPathTextBox.Text = settings.Content.InstallPath;
7683

7784
ImageTempFilename = Path.GetTempFileName();
@@ -722,7 +729,7 @@ private bool infoChangedAndAddedFileForGitHubDownloadType(ContentRouteSettings.R
722729
outputFile.WriteLine(changedFile + "<br>");
723730
}
724731
outputFile.WriteLine("</p>");
725-
}
732+
}
726733

727734
outputFile.WriteLine("<p>" + Catalog.GetString("Remote GitHub Updates available:") + "<br>");
728735

@@ -739,8 +746,8 @@ private bool infoChangedAndAddedFileForGitHubDownloadType(ContentRouteSettings.R
739746
}
740747
outputFile.WriteLine("</p>");
741748
}
742-
else
743-
{
749+
else
750+
{
744751
outputFile.WriteLine("- " + Catalog.GetString("No updates found") + "<br></p>");
745752
}
746753

0 commit comments

Comments
 (0)