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

Commit a7f627e2 authored by Nishith  Khanna's avatar Nishith Khanna
Browse files

Fix text selection handle and also update jetpack compose bom

Older jetpack BOM had an issue where text drag selection handle was
anchored to the top of the text and not to the bottom
parent a241eedc
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -29,7 +29,7 @@ import foundation.e.elib.R as eR
fun AppTheme(darkTheme: Boolean = isSystemInDarkTheme(), content: @Composable () -> Unit) {
    val colorScheme = if (darkTheme) {
        darkColorScheme(
            primary = colorResource(eR.color.e_action_bar_dark),
            primary = colorResource(eR.color.e_accent_dark),
            secondary = colorResource(eR.color.e_action_bar_dark),
            tertiary = colorResource(eR.color.e_accent_dark),
            background = colorResource(eR.color.e_background_dark),
@@ -41,7 +41,7 @@ fun AppTheme(darkTheme: Boolean = isSystemInDarkTheme(), content: @Composable ()
        )
    } else {
        lightColorScheme(
            primary = colorResource(eR.color.e_action_bar_light),
            primary = colorResource(eR.color.e_accent_light),
            secondary = colorResource(eR.color.e_action_bar_light),
            tertiary = colorResource(eR.color.e_accent_light),
            background = colorResource(eR.color.e_background_light),
+1 −1
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@ appcompat = "1.7.0"
bcpgJdk15on = "1.60"
coil = "1.4.0"
coilCompose = "1.4.0"
composeBom = "2025.12.01"
composeBom = "2026.02.00"
constraintlayout = "2.2.0"
core = "1.6.1"
coreKtx = "1.15.0"