Skip to content

Commit

Permalink
fix maxspeed in US was limited to 99 mph
Browse files Browse the repository at this point in the history
  • Loading branch information
westnordost committed Nov 26, 2023
1 parent ebe7dfc commit 02c8d31
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/src/main/res/layout/quest_maxspeed_sign_ca.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
android:textStyle="bold"
android:maxLength="3"
android:textSize="48dp"
tools:text="50"/>
tools:text="999"/>

<Spinner
android:id="@+id/speedUnitSelect"
Expand Down
6 changes: 3 additions & 3 deletions app/src/main/res/layout/quest_maxspeed_sign_us.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="100dp"
android:layout_width="112dp"
android:layout_height="wrap_content"
android:background="@drawable/background_rectangular_sign_white"
android:gravity="center">
Expand All @@ -28,10 +28,10 @@
android:gravity="center"
android:textStyle="bold"
android:textColor="@color/traffic_black"
android:maxLength="2"
android:maxLength="3"
android:textSize="42dp"
android:layout_marginTop="-12dp"
tools:text="80"/>
tools:text="999"/>

<Spinner
android:id="@+id/speedUnitSelect"
Expand Down

0 comments on commit 02c8d31

Please sign in to comment.