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 59555ec commit d02cc21Copy full SHA for d02cc21
PluginCore/ScintillaNet/ScintillaControl.cs
@@ -5551,6 +5551,10 @@ private void StartHighlightSelectionTimer(ScintillaControl sci)
5551
highlightDelay.SynchronizingObject = this as Control;
5552
}
5553
else highlightDelay.Stop();
5554
+ if (highlightDelay.Interval != PluginBase.MainForm.Settings.HighlightMatchingWordsDelay)
5555
+ {
5556
+ highlightDelay.Interval = PluginBase.MainForm.Settings.HighlightMatchingWordsDelay;
5557
+ }
5558
highlightDelay.Start();
5559
5560
void highlightDelay_Elapsed(object sender, System.Timers.ElapsedEventArgs e)
0 commit comments