@@ -84,7 +84,7 @@ public void ImportThemes(List<string> themePaths)
8484 {
8585 DialogResult result = MessageDialog . ShowQuestion ( string . Format ( _ ( "The following themes are already " +
8686 "installed:\n \t {0}\n \n Do you want to overwrite them?" ) , string . Join ( "\n \t " , duplicateThemeNames ) ) ,
87- _ ( "Question" ) , true ) ;
87+ _ ( "Question" ) , MessageBoxIcon . Warning ) ;
8888
8989 if ( result != DialogResult . Yes )
9090 {
@@ -481,7 +481,7 @@ private void deleteThemeMenuItem_Click(object sender, EventArgs e)
481481 ThemeConfig theme = ThemeManager . themeSettings . Find ( t => t . themeId == themeId ) ;
482482
483483 DialogResult result = MessageDialog . ShowQuestion ( string . Format ( _ ( "Are you sure you want to remove " +
484- "the '{0}' theme?" ) , ThemeManager . GetThemeName ( theme ) ) , _ ( "Question" ) , true ) ;
484+ "the '{0}' theme?" ) , ThemeManager . GetThemeName ( theme ) ) , _ ( "Question" ) , MessageBoxIcon . Warning ) ;
485485
486486 if ( result == DialogResult . Yes )
487487 {
@@ -543,7 +543,7 @@ private void OnFormClosing(object sender, FormClosingEventArgs e)
543543 {
544544 DialogResult result = MessageDialog . ShowQuestion ( _ ( "WinDynamicDesktop cannot dynamically update your " +
545545 "wallpaper until you have selected a theme. Are you sure you want to continue without a theme " +
546- "selected?" ) , _ ( "Question" ) , true ) ;
546+ "selected?" ) , _ ( "Question" ) , MessageBoxIcon . Warning ) ;
547547
548548 if ( result != DialogResult . Yes )
549549 {
0 commit comments