diff options
author | nyamatongwe <unknown> | 2011-12-13 11:30:09 +1100 |
---|---|---|
committer | nyamatongwe <unknown> | 2011-12-13 11:30:09 +1100 |
commit | 73baf3f2a33512975b3a9a2bbadf96d5935e0a02 (patch) | |
tree | 2ac78e1c575f60aaf1942ec1c36764ec2b7998a2 /src/Style.h | |
parent | a6d786df58e4f1fad37a4a7a44060801cf323f52 (diff) | |
download | scintilla-mirror-73baf3f2a33512975b3a9a2bbadf96d5935e0a02.tar.gz |
Allow non-integral space width. From Jason Haslam.
Diffstat (limited to 'src/Style.h')
-rw-r--r-- | src/Style.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Style.h b/src/Style.h index ab433107d..018ab70f5 100644 --- a/src/Style.h +++ b/src/Style.h @@ -48,7 +48,7 @@ struct FontMeasurements { unsigned int descent; unsigned int externalLeading; unsigned int aveCharWidth; - unsigned int spaceWidth; + XYPOSITION spaceWidth; int sizeZoomed; FontMeasurements(); void Clear(); |