diff options
author | Zufu Liu <unknown> | 2019-03-31 07:37:35 +1100 |
---|---|---|
committer | Zufu Liu <unknown> | 2019-03-31 07:37:35 +1100 |
commit | db60a2ad9b3f20522e0292fdeccb7e40116bd8dc (patch) | |
tree | a91ab3225eb1af52787e72e7ddb7b4ee1d0a0d5c /src/Editor.cxx | |
parent | 6eb45911a83ed5dd0039c61933c574202a754238 (diff) | |
download | scintilla-mirror-db60a2ad9b3f20522e0292fdeccb7e40116bd8dc.tar.gz |
Feature [feature-requests:#1272]. Add FoldDisplayTextGetStyle to match
FoldDisplayTextSetStyle.
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r-- | src/Editor.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index 4bae9b44f..f269326a2 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -7201,6 +7201,9 @@ sptr_t Editor::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam) { Redraw(); break; + case SCI_FOLDDISPLAYTEXTGETSTYLE: + return foldDisplayTextStyle; + case SCI_TOGGLEFOLD: FoldLine(static_cast<Sci::Line>(wParam), SC_FOLDACTION_TOGGLE); break; |