aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Indicator.h
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2011-04-22 11:07:17 +1000
committernyamatongwe <devnull@localhost>2011-04-22 11:07:17 +1000
commite904ecce4b1fc41ec71ed600669c5d4f96eeffec (patch)
tree3cb346c9946924db50e7a820a20b25ccbe4c9c31 /src/Indicator.h
parentbac0e25db6d1ec83796a659eef9594ec7921c560 (diff)
downloadscintilla-mirror-e904ecce4b1fc41ec71ed600669c5d4f96eeffec.tar.gz
INDIC_ROUNDBOX can set alpha of outline. Feature #3290434.
From Marko Njezic.
Diffstat (limited to 'src/Indicator.h')
-rw-r--r--src/Indicator.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Indicator.h b/src/Indicator.h
index 42b56f07e..e787b592d 100644
--- a/src/Indicator.h
+++ b/src/Indicator.h
@@ -20,7 +20,8 @@ public:
bool under;
ColourPair fore;
int fillAlpha;
- Indicator() : style(INDIC_PLAIN), under(false), fore(ColourDesired(0,0,0)), fillAlpha(30) {
+ int outlineAlpha;
+ Indicator() : style(INDIC_PLAIN), under(false), fore(ColourDesired(0,0,0)), fillAlpha(30), outlineAlpha(50) {
}
void Draw(Surface *surface, const PRectangle &rc, const PRectangle &rcLine);
};