aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Indicator.h
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2021-03-27 08:48:56 +1100
committerNeil <nyamatongwe@gmail.com>2021-03-27 08:48:56 +1100
commitc02f75227ef151af1b283e4436d06149e69679a7 (patch)
tree8a29be357829e31eeaeca18d5bd9e6b618d70c34 /src/Indicator.h
parentec5b61c78f47269ba7f3015e31133e17e5de8fda (diff)
downloadscintilla-mirror-c02f75227ef151af1b283e4436d06149e69679a7.tar.gz
Add API for setting stroke width of indicators.
Diffstat (limited to 'src/Indicator.h')
-rw-r--r--src/Indicator.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Indicator.h b/src/Indicator.h
index 669d9a2d8..89cf1cdc5 100644
--- a/src/Indicator.h
+++ b/src/Indicator.h
@@ -33,6 +33,7 @@ public:
int fillAlpha;
int outlineAlpha;
int attributes;
+ XYPOSITION strokeWidth = 1.0f;
Indicator() noexcept : under(false), fillAlpha(30), outlineAlpha(50), attributes(0) {
}
Indicator(int style_, ColourDesired fore_=ColourDesired(0,0,0), bool under_=false, int fillAlpha_=30, int outlineAlpha_=50) noexcept :