Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions scintilla/doc/ScintillaHistory.html
Original file line number Diff line number Diff line change
Expand Up @@ -608,6 +608,14 @@ <h3>
<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>
Expand Down
2 changes: 1 addition & 1 deletion scintilla/src/Editor.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
Expand Down
4 changes: 3 additions & 1 deletion src/Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading