mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-15 08:16:13 +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.igText(
|
||||
"%s%d",
|
||||
if (tag.ansi) "?" else "",
|
||||
if (tag.ansi) "" else "?",
|
||||
@as(u32, @intCast(tag.value)),
|
||||
);
|
||||
}
|
||||
|
Reference in New Issue
Block a user