Skip to content

Commit e5e5f79

Browse files
authored
Merge pull request #543 from daisuzu/Fix/DRAW_WIDE
Fix drawing wide char
2 parents 4c0698e + 8ebe7eb commit e5e5f79

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/MacVim/MMCoreTextView.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
#define DRAW_UNDERC 0x08 /* draw undercurl text */
4343
#define DRAW_ITALIC 0x10 /* draw italic text */
4444
#define DRAW_CURSOR 0x20
45-
#define DRAW_WIDE 0x40 /* draw wide text */
45+
#define DRAW_WIDE 0x80 /* draw wide text */
4646

4747
#if MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_8
4848
#define kCTFontOrientationDefault kCTFontDefaultOrientation

src/MacVim/MMTextStorage.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
#define DRAW_UNDERC 0x08 /* draw undercurl text */
5252
#define DRAW_ITALIC 0x10 /* draw italic text */
5353
#define DRAW_CURSOR 0x20
54-
#define DRAW_WIDE 0x40 /* draw wide text */
54+
#define DRAW_WIDE 0x80 /* draw wide text */
5555

5656

5757
static NSString *MMWideCharacterAttributeName = @"MMWideChar";

0 commit comments

Comments
 (0)