mirror of
https://github.com/rizonesoft/Notepad3.git
synced 2026-06-14 21:09:05 +08:00
chore(scintilla): apply remaining 5.5.8 change to SetSelectionFromSerialized
Changed InvalidateStyleRedraw() to Redraw() in SetSelectionFromSerialized to match Scintilla 5.5.8 upstream. Note: ListBox.cxx was already at 5.5.8 parity (opaque colors, ItemHeight bitmap).
This commit is contained in:
parent
87ca61243e
commit
f2bfef672d
@ -22,6 +22,7 @@ All beneficial changes from Scintilla 5.5.8 have been applied to NP3's 5.5.7 bas
|
||||
| `CaseConvert.cxx` | Unicode 16 case folding table updates |
|
||||
| `CellBuffer.cxx` | `is_convertible_v` type check + `type_traits` include |
|
||||
| `EditView.cxx` | Bidi data bounds check fix |
|
||||
| `Editor.cxx` | `SetSelectionFromSerialized` uses `Redraw()` instead of `InvalidateStyleRedraw()` |
|
||||
|
||||
> [!NOTE]
|
||||
> `PositionCache.cxx/h` was NOT updated - has `noexcept` specification changes
|
||||
|
||||
@ -718,7 +718,7 @@ void Editor::SetSelectionFromSerialized(const char *serialized) {
|
||||
sel = Selection(serialized);
|
||||
sel.Truncate(pdoc->Length());
|
||||
SetRectangularRange();
|
||||
InvalidateStyleRedraw();
|
||||
Redraw(); // Scintilla 5.5.8: Changed from InvalidateStyleRedraw()
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user