From 8ebe7eb25f07c2c74df6e0b0931e9c350b7e9239 Mon Sep 17 00:00:00 2001 From: Daisuke Suzuki Date: Thu, 7 Sep 2017 20:58:57 +0900 Subject: [PATCH] Fix drawing wide char follow changes in gui.h(ac46984df) --- src/MacVim/MMCoreTextView.m | 2 +- src/MacVim/MMTextStorage.m | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/MacVim/MMCoreTextView.m b/src/MacVim/MMCoreTextView.m index 8b95ef1cc6..9ee0f654e1 100644 --- a/src/MacVim/MMCoreTextView.m +++ b/src/MacVim/MMCoreTextView.m @@ -42,7 +42,7 @@ #define DRAW_UNDERC 0x08 /* draw undercurl text */ #define DRAW_ITALIC 0x10 /* draw italic text */ #define DRAW_CURSOR 0x20 -#define DRAW_WIDE 0x40 /* draw wide text */ +#define DRAW_WIDE 0x80 /* draw wide text */ #if MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_8 #define kCTFontOrientationDefault kCTFontDefaultOrientation diff --git a/src/MacVim/MMTextStorage.m b/src/MacVim/MMTextStorage.m index c7133e826b..862c55dc65 100644 --- a/src/MacVim/MMTextStorage.m +++ b/src/MacVim/MMTextStorage.m @@ -51,7 +51,7 @@ #define DRAW_UNDERC 0x08 /* draw undercurl text */ #define DRAW_ITALIC 0x10 /* draw italic text */ #define DRAW_CURSOR 0x20 -#define DRAW_WIDE 0x40 /* draw wide text */ +#define DRAW_WIDE 0x80 /* draw wide text */ static NSString *MMWideCharacterAttributeName = @"MMWideChar";