File tree Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments