Browse Source

Fixed potential null reference

pull/1146/head
Jurjen Biewenga 9 years ago
parent
commit
8621abc724
  1. 2
      samples/ControlCatalog/MainWindow.xaml.cs

2
samples/ControlCatalog/MainWindow.xaml.cs

@ -12,7 +12,7 @@ namespace ControlCatalog
this.InitializeComponent();
this.AttachDevTools();
//Renderer.DrawDirtyRects = Renderer.DrawFps = true;
PlatformImpl.ShowTaskbarIcon(false);
PlatformImpl?.ShowTaskbarIcon(false);
}
private void InitializeComponent()

Loading…
Cancel
Save