We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 806df16 commit 49db665Copy full SHA for 49db665
QuickNavigate/Forms/TypeExplorerForm.cs
@@ -338,7 +338,7 @@ protected override void OnShown(EventArgs e)
338
if (Settings.TypeExplorerSize.Width > MinimumSize.Width) Size = Settings.TypeExplorerSize;
339
searchingInExternalClasspaths.Checked = Settings.TypeExplorerSearchExternalClassPath;
340
}
341
- timer.Interval = PluginBase.MainForm.Settings.DisplayDelay;
+ timer.Interval = Math.Max(PluginBase.MainForm.Settings.DisplayDelay, 100);
342
timer.Tick += OnTimerTick;
343
timer.Start();
344
0 commit comments