gtk: use language-neutral arrows for resize overlays (#6013)

The meaning of "c" and "r" can be somewhat cryptic to non-native English
speakers as it may not be immediately obvious that "c" stands for
"columns", and "r" stands for "rows". I propose replacing them with
left-right and up-down double-headed arrows that convey the same
meaning, but in a truly language-neutral manner.

Related to #2357
This commit is contained in:
Jeffrey C. Ollie
2025-02-27 08:25:12 -06:00
committed by GitHub

View File

@ -114,7 +114,7 @@ fn gtkUpdate(ud: ?*anyopaque) callconv(.C) c_int {
var buf: [32]u8 = undefined;
const text = std.fmt.bufPrintZ(
&buf,
"{d}c {d}r",
"{d} {d} ↕",
.{
grid_size.columns,
grid_size.rows,