Merge pull request #5603 from RaiKoHoff/Dev_Master

VS version update
This commit is contained in:
Rainer Kottenhoff 2026-03-22 13:54:11 +01:00 committed by GitHub
commit 5bcb13c986
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 12 additions and 2 deletions

View File

@ -608,6 +608,14 @@
<li>
Add mode to draw tabs as [HT] blobs with SCI_SETTABDRAWMODE(SCTD_CONTROLCHAR).
</li>
<li>
Improve mouse drag behaviour when drag and drop disabled.
<a href="https://sourceforge.net/p/scintilla/feature-requests/1581/">Feature #1581</a>.
</li>
<li>
Fix regression in SCI_CONVERTEOLS that may not convert whole file.
<a href="https://sourceforge.net/p/scintilla/bugs/2501/">Bug #2501</a>.
</li>
</ul>
<h3>
<a href="https://www.scintilla.org/scintilla560.zip">Release 5.6.0</a>

View File

@ -4919,7 +4919,7 @@ void Editor::ButtonDownWithModifiers(Point pt, unsigned int curTime, KeyMod modi
// Switch to just the click position
SetSelection(newPos, newPos);
}
if (!sel.Range(selectionPart).Empty()) {
if (dragDropEnabled && !sel.Range(selectionPart).Empty()) {
inDragDrop = DragDrop::initial;
}
}

View File

@ -166,7 +166,9 @@ inline LPCWSTR _Win10BuildToReleaseId(const DWORD build)
#if defined(_MSC_VER)
#if (_MSC_VER == 1950)
#if (_MSC_FULL_VER >= 195035726)
#if (_MSC_FULL_VER >= 195035727)
#define VER_CPL MS Visual C++ 2026 v18.4.1
#elif (_MSC_FULL_VER >= 195035726)
#define VER_CPL MS Visual C++ 2026 v18.4.0
#elif (_MSC_FULL_VER >= 195035725)
#define VER_CPL MS Visual C++ 2026 v18.3.2