Skip to content
Snippets Groups Projects
Commit 9d317727 authored by Janne Mareike Koschinski's avatar Janne Mareike Koschinski
Browse files

Fixes minor bug

parent cf7c05f7
No related branches found
No related tags found
No related merge requests found
...@@ -11,7 +11,7 @@ object Settings { ...@@ -11,7 +11,7 @@ object Settings {
theme = Theme.of( theme = Theme.of(
getString( getString(
context.getString(R.string.preference_theme_key), context.getString(R.string.preference_theme_key),
null ""
) )
) ?: AppearanceSettings.DEFAULT.theme, ) ?: AppearanceSettings.DEFAULT.theme,
useMonospace = getBoolean( useMonospace = getBoolean(
...@@ -29,19 +29,19 @@ object Settings { ...@@ -29,19 +29,19 @@ object Settings {
showPrefix = ShowPrefixMode.of( showPrefix = ShowPrefixMode.of(
getString( getString(
context.getString(R.string.preference_show_prefix_key), context.getString(R.string.preference_show_prefix_key),
null ""
) )
) ?: AppearanceSettings.DEFAULT.showPrefix, ) ?: AppearanceSettings.DEFAULT.showPrefix,
colorizeNicknames = ColorizeNicknamesMode.of( colorizeNicknames = ColorizeNicknamesMode.of(
getString( getString(
context.getString(R.string.preference_colorize_nicknames_key), context.getString(R.string.preference_colorize_nicknames_key),
null ""
) )
) ?: AppearanceSettings.DEFAULT.colorizeNicknames, ) ?: AppearanceSettings.DEFAULT.colorizeNicknames,
inputEnter = InputEnterMode.of( inputEnter = InputEnterMode.of(
getString( getString(
context.getString(R.string.preference_input_enter_key), context.getString(R.string.preference_input_enter_key),
null ""
) )
) ?: AppearanceSettings.DEFAULT.inputEnter, ) ?: AppearanceSettings.DEFAULT.inputEnter,
colorizeMirc = getBoolean( colorizeMirc = getBoolean(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment