Add some missing logging bits for themes.

This commit is contained in:
nicm
2026-01-04 08:05:14 +00:00
parent f72832cc08
commit 6ef7375ade
4 changed files with 19 additions and 3 deletions

View File

@@ -382,6 +382,14 @@ key_string_lookup_key(key_code key, int with_flags)
s = "PasteEnd";
goto append;
}
if (key == KEYC_REPORT_DARK_THEME) {
s = "ReportDarkTheme";
goto append;
}
if (key == KEYC_REPORT_LIGHT_THEME) {
s = "ReportLightTheme";
goto append;
}
if (key == KEYC_MOUSE) {
s = "Mouse";
goto append;