delete key is clear list

alphons <alphons@heijden.com> 15 Jan 2025, 09:45
d1d3944e6e622847d46900662834e7d9e9150a02
1 files changed
  • RedisGui/FormMain.cs
diff --git a/RedisGui/FormMain.cs b/RedisGui/FormMain.cs
index 447c300..d7eba59 100644
--- a/RedisGui/FormMain.cs
+++ b/RedisGui/FormMain.cs
@@ -329,7 +329,7 @@ public partial class FormMain : Form
var key = this.treeView1.SelectedNode.Text;
- DialogResult result = MessageBox.Show("Delet the mofo?", "Confirmation", MessageBoxButtons.OKCancel, MessageBoxIcon.Question);
+ DialogResult result = MessageBox.Show("Delete the mofo?", "Confirmation", MessageBoxButtons.OKCancel, MessageBoxIcon.Question);
if (result == DialogResult.OK)
{
@@ -337,6 +337,8 @@ public partial class FormMain : Form
await this.db.KeyDeleteAsync(new RedisKey(key));
this.treeView1.SelectedNode.Remove();
+
+ this.listView1.Items.Clear();
}
}