From 4f34b13833bd8ed62ca16efae5a3e443edb216b0 Mon Sep 17 00:00:00 2001 From: Ashok Gelal Date: Tue, 25 Apr 2017 13:14:13 -0600 Subject: [PATCH] Hide icon for ErrorWindow --- src/Magpie/Magpie/Views/ErrorWindow.xaml.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Magpie/Magpie/Views/ErrorWindow.xaml.cs b/src/Magpie/Magpie/Views/ErrorWindow.xaml.cs index 9365d25..0e1002e 100644 --- a/src/Magpie/Magpie/Views/ErrorWindow.xaml.cs +++ b/src/Magpie/Magpie/Views/ErrorWindow.xaml.cs @@ -5,6 +5,7 @@ public partial class ErrorWindow public ErrorWindow() { InitializeComponent(); + SetValue(NoIconBehavior.ShowIconProperty, false); } } }