aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.cxx
diff options
context:
space:
mode:
authorZufu Liu <unknown>2019-03-31 07:37:35 +1100
committerZufu Liu <unknown>2019-03-31 07:37:35 +1100
commitdb60a2ad9b3f20522e0292fdeccb7e40116bd8dc (patch)
treea91ab3225eb1af52787e72e7ddb7b4ee1d0a0d5c /src/Editor.cxx
parent6eb45911a83ed5dd0039c61933c574202a754238 (diff)
downloadscintilla-mirror-db60a2ad9b3f20522e0292fdeccb7e40116bd8dc.tar.gz
Feature [feature-requests:#1272]. Add FoldDisplayTextGetStyle to match
FoldDisplayTextSetStyle.
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r--src/Editor.cxx3
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;