diff options
author | Marko Njezic <unknown> | 2012-02-25 00:02:40 +0100 |
---|---|---|
committer | Marko Njezic <unknown> | 2012-02-25 00:02:40 +0100 |
commit | cfc3ab4f4a1ae8224113ec40d3a2bdf244f7fa3c (patch) | |
tree | 36f8790cf3aafde6d41162e3752eac181a01e0b1 /src/ViewStyle.h | |
parent | 393831bfa0fdcc5db87841ea8d429c9e8275285d (diff) | |
download | scintilla-mirror-cfc3ab4f4a1ae8224113ec40d3a2bdf244f7fa3c.tar.gz |
Bug #3493503. Properly redraw image markers with height larger than line height.
Regression from change set 3949.
Diffstat (limited to 'src/ViewStyle.h')
-rw-r--r-- | src/ViewStyle.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ViewStyle.h b/src/ViewStyle.h index 3803a6cb2..ef8d98e0c 100644 --- a/src/ViewStyle.h +++ b/src/ViewStyle.h @@ -66,6 +66,7 @@ public: size_t stylesSize; Style *styles; LineMarker markers[MARKER_MAX + 1]; + int largestMarkerHeight; Indicator indicators[INDIC_MAX + 1]; int technology; int lineHeight; @@ -148,6 +149,7 @@ public: void SetStyleFontName(int styleIndex, const char *name); bool ProtectionActive() const; bool ValidStyle(size_t styleIndex) const; + void CalcLargestMarkerHeight(); }; #ifdef SCI_NAMESPACE |