From ff11a7d3a7585d4a8fac0fe25a74ddc465e2bb9d Mon Sep 17 00:00:00 2001 From: AdAstra-LD <76622070+AdAstra-LD@users.noreply.github.com> Date: Sun, 3 Oct 2021 16:25:14 +0200 Subject: [PATCH] Temporarily disabled incomplete script tooltips feature --- DS_Map/Main Window.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/DS_Map/Main Window.cs b/DS_Map/Main Window.cs index 7019032..344f92c 100644 --- a/DS_Map/Main Window.cs +++ b/DS_Map/Main Window.cs @@ -5751,6 +5751,7 @@ namespace DSPRE { InitHotkeys(ActionTextArea, actionSearchManager); // INIT TOOLTIPS DWELLING + /* ScriptTextArea.MouseDwellTime = 300; ScriptTextArea.DwellEnd += TextArea_DwellEnd; ScriptTextArea.DwellStart += TextArea_DwellStart; @@ -5758,8 +5759,10 @@ namespace DSPRE { FunctionTextArea.MouseDwellTime = 300; FunctionTextArea.DwellEnd += TextArea_DwellEnd; FunctionTextArea.DwellStart += TextArea_DwellStart; + */ } + /* private void TextArea_DwellStart(object sender, DwellEventArgs e) { TextArea_DwellEnd(sender, e); Scintilla ctr = sender as Scintilla; @@ -5830,6 +5833,7 @@ namespace DSPRE { tooltipMutex.ReleaseMutex(); } } + */ private void InitNumberMargin(Scintilla textArea, EventHandler textArea_MarginClick) { textArea.Styles[Style.LineNumber].BackColor = BACK_COLOR;