Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
LunarX authored and KevinBoulongne committed Aug 6, 2024
1 parent 4c26e95 commit 2b637f9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ import kotlinx.coroutines.flow.launchIn
import kotlinx.coroutines.flow.onEach
import kotlinx.coroutines.launch
import javax.inject.Inject
import com.google.android.material.R as RMaeterial
import com.google.android.material.R as RMaterial

@AndroidEntryPoint
class NewMessageFragment : Fragment() {
Expand Down Expand Up @@ -353,7 +353,7 @@ class NewMessageFragment : Fragment() {
enableAlgorithmicDarkening(isEnabled = true)
if (context.isNightModeEnabled()) addCss(context.loadCss(R.raw.custom_dark_mode))

val customColors = listOf(PRIMARY_COLOR_CODE to context.getAttributeColor(RMaeterial.attr.colorPrimary))
val customColors = listOf(PRIMARY_COLOR_CODE to context.getAttributeColor(RMaterial.attr.colorPrimary))
addCss(context.loadCss(R.raw.style, customColors))
addCss(context.loadCss(R.raw.editor_style, customColors))

Expand Down

0 comments on commit 2b637f9

Please sign in to comment.