Skip to content

Commit

Permalink
more textbox fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
foglio1024 committed Apr 21, 2017
1 parent bca59d3 commit 3f422a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TCC.UI/UpdateManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public static void CheckDatabaseVersion()
if(v < newVer)
{
//update
if(MessageBox.Show("Updated icons database available. Download now?", "TCC", MessageBoxButton.YesNo, MessageBoxImage.Question) == MessageBoxResult.Yes)
if(MessageBox.Show(String.Format("Updated icons database available (v{0}). Download now?", newVer), "TCC", MessageBoxButton.YesNo, MessageBoxImage.Question) == MessageBoxResult.Yes)
{
DownloadDatabase();
ExtractDatabase();
Expand Down

0 comments on commit 3f422a1

Please sign in to comment.