mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-08-02 14:57:31 +03:00
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:
@ -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,
|
||||||
|
Reference in New Issue
Block a user