Skip to content

Commit

Permalink
Fixed possible crash on right click
Browse files Browse the repository at this point in the history
  • Loading branch information
vchelaru committed Mar 31, 2024
1 parent 871e596 commit b0bf495
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public static void HandleSelected(NodeViewModel nodeViewModel, bool focus, bool
{
IsUpdatingThisSelectionOnGlueEvent = false;

var newTag = nodeViewModel.Tag;
var newTag = nodeViewModel?.Tag;

bool didSelectionChange;
if (currentNodes?.Contains(nodeViewModel) == true)
Expand Down

0 comments on commit b0bf495

Please sign in to comment.