diff options
author | nyamatongwe <unknown> | 2005-07-14 02:46:03 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2005-07-14 02:46:03 +0000 |
commit | 4954f7e046ab70eb9994cd6b763e3097ee7687de (patch) | |
tree | 1eb9475e6e70edc60e2eab33a4dfd2dff7e05320 /src | |
parent | 2a4b206dfce6d1daff1d2556ecdf019a6a6ba183 (diff) | |
download | scintilla-mirror-4954f7e046ab70eb9994cd6b763e3097ee7687de.tar.gz |
Fixed up and down button handling so they work when not on first line of
calltip.
Diffstat (limited to 'src')
-rw-r--r-- | src/CallTip.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/CallTip.h b/src/CallTip.h index feff7ea0b..53eec832a 100644 --- a/src/CallTip.h +++ b/src/CallTip.h @@ -15,8 +15,8 @@ class CallTip { int endHighlight; char *val; Font font; - int xUp; - int xDown; + PRectangle rectUp; + PRectangle rectDown; int lineHeight; int offsetMain; // Private so CallTip objects can not be copied |