fix: I forgot this elif

This commit is contained in:
Ludgie 2023-12-07 08:27:14 +01:00 committed by GitHub
parent 42e83e4272
commit fc219dab85
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -597,6 +597,8 @@ enum_font_place(const char *place)
} }
if (!strcasecmp(place, "ActiveWindow")) { if (!strcasecmp(place, "ActiveWindow")) {
return FONT_PLACE_ACTIVEWINDOW; return FONT_PLACE_ACTIVEWINDOW;
} else if (!strcasecmp(place, "InactiveWindow")) {
return FONT_PLACE_INACTIVEWINDOW;
} else if (!strcasecmp(place, "MenuItem")) { } else if (!strcasecmp(place, "MenuItem")) {
return FONT_PLACE_MENUITEM; return FONT_PLACE_MENUITEM;
} else if (!strcasecmp(place, "OnScreenDisplay") } else if (!strcasecmp(place, "OnScreenDisplay")