Skip to content

Commit

Permalink
Revise default player theme values
Browse files Browse the repository at this point in the history
  • Loading branch information
toasterofbread committed Jul 31, 2024
1 parent a9f2fa3 commit 33d7f79
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class ThemeSettings(val context: AppContext): SettingsGroup("THEME", context.get
val NOWPLAYING_DEFAULT_BACKGROUND_IMAGE_OPACITY: PreferencesProperty<Float> by property(
getName = { getString("s_key_np_default_background_image_video_opacity") },
getDescription = { null },
getDefaultValue = { if (Platform.DESKTOP.isCurrent()) 0.0f else 0.5f }
getDefaultValue = { 0.5f }
)
val NOWPLAYING_DEFAULT_VIDEO_POSITION: PreferencesProperty<VideoPosition> by enumProperty(
getName = { getString("s_key_np_default_video_position") },
Expand All @@ -49,7 +49,7 @@ class ThemeSettings(val context: AppContext): SettingsGroup("THEME", context.get
val NOWPLAYING_DEFAULT_LANDSCAPE_QUEUE_OPACITY: PreferencesProperty<Float> by property(
getName = { getString("s_key_np_default_landscape_queue_opacity") },
getDescription = { null },
getDefaultValue = { 1f }
getDefaultValue = { 0.5f }
)
val NOWPLAYING_DEFAULT_SHADOW_RADIUS: PreferencesProperty<Float> by property(
getName = { getString("s_key_np_default_shadow_radius") },
Expand Down

0 comments on commit 33d7f79

Please sign in to comment.