gtk: use language-neutral arrows for resize overlays

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:
Leah Amelia Chen
2025-02-27 08:38:06 +01:00
parent 4e5e4a7c2f
commit cdfa028521

View File

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