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

Commit 3e8c6949 authored by Fahim's avatar Fahim
Browse files
parent 973eec18
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -234,7 +234,7 @@ object K9 : EarlyInit {
    private val sortAscending = mutableMapOf<SortType, Boolean>()

    @JvmStatic
    var isUseBackgroundAsUnreadIndicator = false
    var isUseBackgroundAsUnreadIndicator = true

    @get:Synchronized
    @set:Synchronized
@@ -361,7 +361,7 @@ object K9 : EarlyInit {

        splitViewMode = storage.getEnum("splitViewMode", SplitViewMode.NEVER)

        isUseBackgroundAsUnreadIndicator = storage.getBoolean("useBackgroundAsUnreadIndicator", false)
        isUseBackgroundAsUnreadIndicator = storage.getBoolean("useBackgroundAsUnreadIndicator", true)
        isThreadedViewEnabled = storage.getBoolean("threadedView", true)
        fontSizes.load(storage)

+2 −2
Original line number Diff line number Diff line
@@ -93,7 +93,7 @@
        <item name="messageListForwarded">@drawable/ic_messagelist_forwarded</item>
        <item name="messageListAnsweredForwarded">@drawable/ic_messagelist_answered_forwarded</item>
        <item name="messageStar">@drawable/btn_check_star</item>
        <item name="messageStarColor">#fbbc04</item>
        <item name="messageStarColor">#EB621E</item>
        <item name="messageViewBackgroundColor">#ffffffff</item>
        <item name="messageComposeAddContactImage">@drawable/ic_person_plus</item>
        <item name="attachmentCardBackground">#e8e8e8</item>
@@ -212,7 +212,7 @@
        <item name="messageListForwarded">@drawable/ic_messagelist_forwarded</item>
        <item name="messageListAnsweredForwarded">@drawable/ic_messagelist_answered_forwarded</item>
        <item name="messageStar">@drawable/btn_check_star</item>
        <item name="messageStarColor">#fdd663</item>
        <item name="messageStarColor">#EB621E</item>
        <item name="messageViewBackgroundColor">#000000</item>
        <item name="messageComposeAddContactImage">@drawable/ic_person_plus</item>
        <item name="attachmentCardBackground">#313131</item>
+3 −1
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <color name="color_message_list_selected_background">@color/color_default_gray2</color>
    <color name="color_message_list_selected_background">#145DB2FF</color>
    <color name="color_message_list_unread_background">#1FFFFFFF</color>
    <color name="color_message_list_thread_count_background">#61FFFFFF</color>
</resources>
 No newline at end of file
+3 −1
Original line number Diff line number Diff line
@@ -11,5 +11,7 @@
    <color name="color_default_gray1">@lineageos.platform:color/color_default_gray1</color>
    <color name="color_default_gray2">@lineageos.platform:color/color_default_gray2</color>

    <color name="color_message_list_selected_background">@color/color_default_gray1</color>
    <color name="color_message_list_selected_background">#140086FF</color>
    <color name="color_message_list_unread_background">#1F000000</color>
    <color name="color_message_list_thread_count_background">#61000000</color>
</resources>
 No newline at end of file
+3 −3
Original line number Diff line number Diff line
@@ -87,14 +87,14 @@
        <item name="textColorPrimaryRecipientDropdown">@color/color_default_primary_text</item>
        <item name="textColorSecondaryRecipientDropdown">@color/color_default_secondary_text</item>
        <item name="messageListSelectedBackgroundColor">@color/color_message_list_selected_background</item>
        <item name="messageListReadItemBackgroundColor">#c0cdcdcd</item>
        <item name="messageListUnreadItemBackgroundColor">#00ffffff</item>
        <item name="messageListReadItemBackgroundColor">@color/color_default_background</item>
        <item name="messageListUnreadItemBackgroundColor">@color/color_message_list_unread_background</item>
        <item name="messageListThreadCountForegroundColor">?android:attr/colorBackground</item>
        <item name="messageListThreadCountBackground">@drawable/thread_count_box_light</item>
        <item name="messageListActiveItemBackgroundColor">@color/color_default_accent</item>
        <item name="messageListPreviewTextColor">@color/color_default_secondary_text</item>
        <item name="messageListDividerColor">@color/color_default_divider</item>
        <item name="messageListStateIconTint">#bbbbbb</item>
        <item name="messageListStateIconTint">@color/default_icon_color</item>
        <item name="messageListAttachment">@lineageos.platform:drawable/ic_attachment</item>
        <item name="messageListAnswered">@drawable/ic_messagelist_answered</item>
        <item name="messageListForwarded">@drawable/ic_messagelist_forwarded</item>
Loading