From e49ba3cb3a3010fdc7192c89e992271a95bbb172 Mon Sep 17 00:00:00 2001 From: Sanjay Date: Mon, 17 Apr 2023 22:06:45 -0700 Subject: [PATCH] =?UTF-8?q?x=20->=20=C3=97=20in=20title=20bar=20resize=20m?= =?UTF-8?q?essage?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/MacVim/MMVimView.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MacVim/MMVimView.m b/src/MacVim/MMVimView.m index d0a119f174..c062aedec5 100644 --- a/src/MacVim/MMVimView.m +++ b/src/MacVim/MMVimView.m @@ -982,7 +982,7 @@ - (void)frameSizeMayHaveChanged:(BOOL)keepGUISize // We only want to set the window title if this resize came from // a live-resize, not (for example) setting 'columns' or 'lines'. if ([self inLiveResize]) { - [[self window] setTitle:[NSString stringWithFormat:@"%dx%d", + [[self window] setTitle:[NSString stringWithFormat:@"%d × %d", constrained[1], constrained[0]]]; } }