Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 83e68a54 authored by /e/ robot's avatar /e/ robot
Browse files

Merge remote-tracking branch 'origin/lineage-17.1' into v1-q

parents 7dd8ecf4 92990f8e
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -119,7 +119,10 @@ public final class KeyboardTheme implements Comparable<KeyboardTheme> {
    }

    public static String getKeyboardThemeName(final int themeId) {
        final KeyboardTheme theme = searchKeyboardThemeById(themeId, KEYBOARD_THEMES);
        KeyboardTheme theme = searchKeyboardThemeById(themeId, KEYBOARD_THEMES);
        if (theme == null) {
            theme = searchKeyboardThemeById(DEFAULT_THEME_ID, KEYBOARD_THEMES);
        }
        return theme.mThemeName;
    }