Compare commits

...

2 Commits

Author SHA1 Message Date
emoose
84e138c1ae Form: allow ESC key to clear search filter 2025-07-29 15:46:52 +01:00
emoose
e3ff6d42ac Settings: add antialiasing/aniso settings for newer drivers
Renamed older settings to pre-526.47 (might be nice if we had a
MaxDriverVersion property in there)

Added TILEDCACHE_L2_USAGE to Reference too.

Thanks to Guzz from guru3d for these new settings!

Changed spaces -> tabs in XML, since that seems to be VS default
2025-07-29 15:44:59 +01:00
3 changed files with 6479 additions and 6034 deletions

View File

File diff suppressed because it is too large Load Diff

View File

@@ -573,6 +573,7 @@
this.txtFilter.TabIndex = 82;
this.txtFilter.WatermarkText = "Search for setting...";
this.txtFilter.TextChanged += new System.EventHandler(this.txtFilter_TextChanged);
this.txtFilter.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtFilter_KeyUp);
//
// frmDrvSettings
//

View File

@@ -1393,6 +1393,7 @@ namespace nspector
else if (e.KeyCode == Keys.Escape)
{
txtFilter.Text = "";
RefreshCurrentProfile();
}
@@ -1537,6 +1538,14 @@ namespace nspector
Clipboard.SetText(sbSettings.ToString());
}
private void txtFilter_KeyUp(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Escape)
{
txtFilter.Text = "";
}
}
}
}