Skip to content

Commit 49db665

Browse files
author
SlavaRa
committed
fixes issue #140
1 parent 806df16 commit 49db665

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

QuickNavigate/Forms/TypeExplorerForm.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ protected override void OnShown(EventArgs e)
338338
if (Settings.TypeExplorerSize.Width > MinimumSize.Width) Size = Settings.TypeExplorerSize;
339339
searchingInExternalClasspaths.Checked = Settings.TypeExplorerSearchExternalClassPath;
340340
}
341-
timer.Interval = PluginBase.MainForm.Settings.DisplayDelay;
341+
timer.Interval = Math.Max(PluginBase.MainForm.Settings.DisplayDelay, 100);
342342
timer.Tick += OnTimerTick;
343343
timer.Start();
344344
}

0 commit comments

Comments
 (0)