From 53ead6e9efae99ceeb4dfebe5963fa79fbac0448 Mon Sep 17 00:00:00 2001 From: emoose Date: Wed, 6 Aug 2025 23:05:09 +0100 Subject: [PATCH] Form: disable text auto-complete in filter textbox Thanks to Astyanax for posting fix on guru3d forums! --- nspector/frmDrvSettings.Designer.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nspector/frmDrvSettings.Designer.cs b/nspector/frmDrvSettings.Designer.cs index 5e7a3f5..9242638 100644 --- a/nspector/frmDrvSettings.Designer.cs +++ b/nspector/frmDrvSettings.Designer.cs @@ -570,6 +570,8 @@ this.txtFilter.Location = new System.Drawing.Point(0, 0); this.txtFilter.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3); this.txtFilter.Name = "txtFilter"; + this.txtFilter.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.None; + this.txtFilter.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.None; this.txtFilter.Size = new System.Drawing.Size(2118, 35); this.txtFilter.TabIndex = 82; this.txtFilter.WatermarkText = "Search for setting...";