Skip to content

Commit

Permalink
Merge pull request #1488 from sfsam/dim_x
Browse files Browse the repository at this point in the history
Proposal: change x to × in title bar resize message
  • Loading branch information
ychin authored Aug 25, 2024
2 parents 71a8b1c + e49ba3c commit 6ac88fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MacVim/MMVimView.m
Original file line number Diff line number Diff line change
Expand Up @@ -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]]];
}
}
Expand Down

0 comments on commit 6ac88fb

Please sign in to comment.