Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions RController.m
Original file line number Diff line number Diff line change
Expand Up @@ -2141,6 +2141,12 @@ - (void) writeLogsWithBytes: (char*) buf length: (int) len type: (int) outputTyp
s = fixBuggyOutput(s, @"Warning: Expected min height of view: .* to be less than or equal to ");
/* bug in Monterey and up */
s = fixBuggyOutput(s, @"IsMenuKeyEvent: found no unichar data in event; retranslated without deadkeys to produce");

// new Ventura 2022-08-09 @tbates
s = fixBuggyOutput(s, @"Located .* match from search: item '.*' in menu '.*' with match penalty");
s = fixBuggyOutput(s, @"Choosing result from list: item '.*' in menu '.*' with match penalty");
s = fixBuggyOutput(s, @"Marking command key cache valid");
s = fixBuggyOutput(s, @"Warning: Could not create system idle sleep assertion");
}
[self flushROutput];
[self writeConsoleDirectly:s withColor:color];
Expand Down