mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-15 16:26:08 +03:00
Merge pull request #1987 from rockorager/main
inspector: fix mode prefix by prepending '?' only to private modes
This commit is contained in:
@ -596,7 +596,7 @@ fn renderModesWindow(self: *Inspector) void {
|
|||||||
_ = cimgui.c.igTableSetColumnIndex(1);
|
_ = cimgui.c.igTableSetColumnIndex(1);
|
||||||
cimgui.c.igText(
|
cimgui.c.igText(
|
||||||
"%s%d",
|
"%s%d",
|
||||||
if (tag.ansi) "?" else "",
|
if (tag.ansi) "" else "?",
|
||||||
@as(u32, @intCast(tag.value)),
|
@as(u32, @intCast(tag.value)),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user