mirror of
https://github.com/rizonesoft/Notepad3.git
synced 2026-06-23 21:01:01 +08:00
commit
5bcb13c986
@ -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>
|
||||
|
||||
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user