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

Commit d0d6eb54 authored by Jesse Vincent's avatar Jesse Vincent
Browse files

Set the landscape-mode text colors to something more reasonable (and really...

Set the landscape-mode text colors to something more reasonable (and really "default") in the landscape xml layout templates
Re-remove the explicit subject color hardcoding in FolderMessageList.java
parent c00eb305
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    android:versionCode="105"
    android:versionName="0.105" package="com.fsck.k9">
    android:versionCode="106"
    android:versionName="0.106" package="com.fsck.k9">
    <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
    <uses-permission android:name="android.permission.READ_CONTACTS"/>
    <uses-permission android:name="android.permission.READ_OWNER_DATA"/>
+3 −3
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@
        android:ellipsize="end"
        android:textAppearance="?android:attr/textAppearanceSmall"
        android:singleLine="true"
        android:textColor="?android:attr/textColorPrimaryInverse"
        android:textColor="?android:attr/textColorPrimary"
        android:layout_width="50px"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true" />
@@ -29,7 +29,7 @@
        android:layout_width="110px"
        android:layout_height="wrap_content"
        android:textAppearance="?android:attr/textAppearanceSmall"
        android:textColor="?android:attr/textColorSecondaryInverse"
        android:textColor="?android:attr/textColorSecondary"
        android:paddingLeft="3px"
        android:paddingRight="3px"
        android:layout_toLeftOf="@+id/date" />
@@ -38,7 +38,7 @@
        android:ellipsize="end"
        android:singleLine="true"
        android:textAppearance="?android:attr/textAppearanceSmall"
        android:textColor="?android:attr/textColorPrimaryInverse"
        android:textColor="?android:attr/textColorPrimary"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:paddingLeft="10px"
+0 −4
Original line number Diff line number Diff line
@@ -2199,10 +2199,6 @@ public class FolderMessageList extends ExpandableListActivity
                {
                  holder.subject.setTextColor(Email.FLAGGED_COLOR);
                }
                else
                {
                  holder.subject.setTextColor(0xff000000);
                }

                holder.subject.setText(message.subject);