From 59c7480e4c828cba6d9ff856f73bbc8209164a88 Mon Sep 17 00:00:00 2001 From: Bitl Date: Mon, 30 Aug 2021 17:06:35 -0700 Subject: [PATCH] more bugfixes --- Novetus/NovetusLauncher/Forms/SDK/XMLContentEditor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Novetus/NovetusLauncher/Forms/SDK/XMLContentEditor.cs b/Novetus/NovetusLauncher/Forms/SDK/XMLContentEditor.cs index bb80206..8a10ccd 100644 --- a/Novetus/NovetusLauncher/Forms/SDK/XMLContentEditor.cs +++ b/Novetus/NovetusLauncher/Forms/SDK/XMLContentEditor.cs @@ -152,7 +152,7 @@ public partial class XMLContentEditor : Form //http://csharp.net-informations.com/datagridview/deletegridview.htm private void XMLView_CellMouseUp(object sender, DataGridViewCellMouseEventArgs e) { - if (e.Button == MouseButtons.Right) + if (e.Button == MouseButtons.Right && !XMLView.CurrentCell.IsInEditMode) { XMLView.Rows[e.RowIndex].Selected = true; rowIndex = e.RowIndex;