-
-
Notifications
You must be signed in to change notification settings - Fork 941
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b0f2173
commit caec92a
Showing
3 changed files
with
27 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -157,6 +157,12 @@ procedure TCompScintEdit.CreateWnd; | |
properties." | ||
-5.0.1: Review using SCI_INDICSETSTROKEWIDTH for high DPI support on | ||
INDIC_SQUIGGLE. | ||
-5.2.3: "Applications should move to SCI_GETTEXTRANGEFULL, SCI_FINDTEXTFULL, | ||
and SCI_FORMATRANGEFULL from their predecessors as they will be | ||
deprecated." So our use of SCI_GETTEXTRANGE and SCI_FORMATRANGE needs | ||
to be updated but that also means we should do many more changes to | ||
replace all the Integer positions with NativeInt positions. Does not | ||
actually change anything until there's a 64-bit build... | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
martijnlaan
Author
Member
|
||
-5.3.0: "Stop including STYLE_CALLTIP when calculating line height. Allows a | ||
large font to be used for calltips without affecting text display." | ||
Allows cleanup of our STYLE_AUTOCOMPLETION patch. | ||
|
I'd prefer to see a dedicated type like
TScintPosition = type NativeInt
. That would make it clearer which variables/parameters/return values are intended to be positions.(I know there's a
TSci_Position
already, but that's inScintInt
. And theTSci_
prefix would be inconsistent with everything else inScintEdit
.)