Browse Source

Added a nullable thing

Kenric Nugteren 1 year ago
parent
commit
656196d52d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      inabox.wpf/DynamicGrid/DynamicGridCommon.cs

+ 1 - 1
inabox.wpf/DynamicGrid/DynamicGridCommon.cs

@@ -104,7 +104,7 @@ public delegate void EntitySaveEvent(IDynamicEditorForm editor, BaseObject[] ite
 
 public delegate bool DynamicGridButtonClickEvent(Button button, CoreRow[] rows);
 
-public delegate void OnContextMenuOpening(CoreTreeNode node, ContextMenu menu);
+public delegate void OnContextMenuOpening(CoreTreeNode? node, ContextMenu menu);
 
 
 public class DynamicGridSelectionEventArgs : CancelEventArgs