diff options
author | Marko Njezic <devnull@localhost> | 2012-02-25 00:02:40 +0100 |
---|---|---|
committer | Marko Njezic <devnull@localhost> | 2012-02-25 00:02:40 +0100 |
commit | c8ef39998a48b5e6d19eb74026b25432814d4ee3 (patch) | |
tree | 35ed2b2e95b00e25d298564cbbe13ddadde3861e /src/ViewStyle.h | |
parent | 054af99d9aae10ae2222c76557e8554dafff60a5 (diff) | |
download | scintilla-mirror-c8ef39998a48b5e6d19eb74026b25432814d4ee3.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 |