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

Commit 04a562be authored by Michael W's avatar Michael W Committed by Michael Bestas
Browse files

Dialer: Disable forceDarkAllowed for contact pictures



It inverts colors sometimes (but not always), often when scrolling

Co-authored-by: default avatarMichael Bestas <mkbestas@lineageos.org>
Change-Id: I4a9e4e367c292488639da09757e924f99890daf5
parent f90ac193
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -71,7 +71,8 @@
              android:layout_height="@dimen/contact_photo_size"
              android:paddingTop="2dp"
              android:nextFocusRight="@id/primary_action_view"
              android:focusable="true"/>
              android:focusable="true"
              android:forceDarkAllowed="false" />

          <ImageView
              android:id="@+id/quick_contact_checkbox"
+2 −1
Original line number Diff line number Diff line
@@ -33,7 +33,8 @@
      android:layout_width="@dimen/call_details_contact_photo_size"
      android:layout_height="@dimen/call_details_contact_photo_size"
      android:padding="@dimen/call_details_contact_photo_padding"
      android:focusable="true"/>
      android:focusable="true"
      android:forceDarkAllowed="false" />

  <LinearLayout
      android:id="@+id/contact_information"
+2 −1
Original line number Diff line number Diff line
@@ -49,7 +49,8 @@
      android:layout_width="@dimen/contact_photo_size"
      android:layout_height="@dimen/contact_photo_size"
      android:layout_gravity="center_vertical"
      android:focusable="true" />
      android:focusable="true"
      android:forceDarkAllowed="false" />

    <LinearLayout
      android:layout_width="0dp"
+2 −1
Original line number Diff line number Diff line
@@ -28,7 +28,8 @@
    android:layout_width="@dimen/contact_photo_size"
    android:layout_height="@dimen/contact_photo_size"
    android:layout_marginEnd="@dimen/call_log_list_item_info_margin_start"
    android:paddingTop="2dp" />
    android:paddingTop="2dp"
    android:forceDarkAllowed="false" />

  <TextView
    android:id="@+id/name"
+2 −1
Original line number Diff line number Diff line
@@ -57,7 +57,8 @@
          android:layout_height="@dimen/call_subject_dialog_contact_photo_size"
          android:layout_marginEnd="@dimen/call_subject_dialog_margin"
          android:layout_gravity="top"
          android:focusable="true"/>
          android:focusable="true"
          android:forceDarkAllowed="false" />

        <LinearLayout
          android:layout_width="match_parent"
Loading