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

Commit 8c1ec51b authored by Justin Klaassen's avatar Justin Klaassen Committed by Android Git Automerger
Browse files

am 60e8f1b3: Enforce singleLine on CalculatorResult TextView

* commit '60e8f1b3':
  Enforce singleLine on CalculatorResult TextView
parents ae876380 60e8f1b3
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -57,6 +57,7 @@
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/formula"
        android:singleLine="true"
        android:textColor="@color/display_result_text_color" />

</RelativeLayout>
+8 −1
Original line number Diff line number Diff line
@@ -206,7 +206,14 @@
    <string name="error_aborted">Aborted</string>
    <!-- Error displayed when excessive precision is required. [CHAR_LIMIT=20] -->
    <string name="error_overflow">Infinite?</string>
    <!-- Error displayed when division by zero is detected. [CHAR_LIMIT=20] -->
    <!--
      Error displayed when division by zero is detected.

      If the translation does not fit within the given limit, then a shortened version must
      be used, e.g. "Division by 0". Exceeding the limit will result in a truncated string.

      [CHAR_LIMIT=20]
    -->
    <string name="error_zero_divide">Can\'t divide by 0</string>

    <!-- Toast shown when text is copied to the clipboard. [CHAR_LIMIT=40] -->