Swallow a possible ArgumentNullException when copying text to the system clipboard

This commit is contained in:
Grant Limberg 2017-05-12 16:05:29 -07:00
parent 236a952458
commit e9b956ed71

View File

@ -111,7 +111,14 @@ namespace WinUI
private void ToolbarItem_NodeIDClicked(object sender, System.Windows.RoutedEventArgs e)
{
Clipboard.SetText(nodeId);
try
{
Clipboard.SetText(nodeId);
}
catch (ArgumentNullException)
{
// tried to copy a null nodeId
}
}
private void ToolbarItem_ShowNetworksClicked(object sender, System.Windows.RoutedEventArgs e)