diff options
author | nyamatongwe <devnull@localhost> | 2005-07-14 02:46:03 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2005-07-14 02:46:03 +0000 |
commit | 023be11d75100ccf39d89fe828b6476a10f980a1 (patch) | |
tree | 1eb9475e6e70edc60e2eab33a4dfd2dff7e05320 /src | |
parent | add436cedc792b0c470d90901a995ecb9624c07e (diff) | |
download | scintilla-mirror-023be11d75100ccf39d89fe828b6476a10f980a1.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 |