Use correct glyph in title when resizing NS frames
* src/nsterm.m ([EmacsView windowWillResize:toSize:]): Use ×, not x.
This commit is contained in:
parent
23974cfa48
commit
a7825c4be0
1 changed files with 1 additions and 1 deletions
|
@ -7282,7 +7282,7 @@ - (NSSize)windowWillResize: (NSWindow *)sender toSize: (NSSize)frameSize
|
||||||
old_title = t;
|
old_title = t;
|
||||||
}
|
}
|
||||||
size_title = xmalloc (strlen (old_title) + 40);
|
size_title = xmalloc (strlen (old_title) + 40);
|
||||||
esprintf (size_title, "%s — (%d x %d)", old_title, cols, rows);
|
esprintf (size_title, "%s — (%d × %d)", old_title, cols, rows);
|
||||||
[window setTitle: [NSString stringWithUTF8String: size_title]];
|
[window setTitle: [NSString stringWithUTF8String: size_title]];
|
||||||
[window display];
|
[window display];
|
||||||
xfree (size_title);
|
xfree (size_title);
|
||||||
|
|
Loading…
Add table
Reference in a new issue