aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ViewStyle.h
diff options
context:
space:
mode:
authorMarko Njezic <devnull@localhost>2012-02-25 00:02:40 +0100
committerMarko Njezic <devnull@localhost>2012-02-25 00:02:40 +0100
commitc8ef39998a48b5e6d19eb74026b25432814d4ee3 (patch)
tree35ed2b2e95b00e25d298564cbbe13ddadde3861e /src/ViewStyle.h
parent054af99d9aae10ae2222c76557e8554dafff60a5 (diff)
downloadscintilla-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.h2
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