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

Commit 9a215b2e authored by Josh's avatar Josh
Browse files

updated divider color to match UI specs

Fixes: 359845632
Flag: com.android.systemui.keyboard_shortcut_helper_rewrite
Test: Manual - ensure that divider color corresponds to UX specs
Change-Id: Ib1df65698edbda615d748ae0e1c6cd80bb5b9a71
parent f85cc631
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -403,7 +403,7 @@ private fun ShortcutSubCategorySinglePane(searchQuery: String, subCategory: Shor
    SubCategoryTitle(subCategory.label)
    subCategory.shortcuts.fastForEachIndexed { index, shortcut ->
        if (index > 0) {
            HorizontalDivider()
            HorizontalDivider(color = MaterialTheme.colorScheme.surfaceContainerHigh)
        }
        ShortcutView(Modifier.padding(vertical = 24.dp), searchQuery, shortcut)
    }
@@ -482,7 +482,7 @@ private fun SubCategoryContainerDualPane(searchQuery: String, subCategory: Short
            Spacer(Modifier.height(8.dp))
            subCategory.shortcuts.fastForEachIndexed { index, shortcut ->
                if (index > 0) {
                    HorizontalDivider()
                    HorizontalDivider(color = MaterialTheme.colorScheme.surfaceContainerHigh)
                }
                ShortcutView(Modifier.padding(vertical = 16.dp), searchQuery, shortcut)
            }