Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(#207): digital clock got line wrapped #227

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/src/main/res/layout/home_fragment_content.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@

<TextView
android:id="@+id/home_fragment_time"
android:layout_width="wrap_content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/_64sdp"
android:text="@string/main_placeholder_clock"
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/xml/home_motion_scene_bottom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
app:layout_constraintTop_toTopOf="parent"/>
<Constraint
android:id="@+id/home_fragment_time"
android:layout_width="wrap_content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/margin_top_large"
app:visibilityMode="ignore"
Expand Down Expand Up @@ -134,7 +134,7 @@
<ConstraintSet android:id="@+id/home_motion_02">
<Constraint
android:id="@+id/home_fragment_time"
android:layout_width="wrap_content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/margin_top_large"
android:alpha="-1"
Expand Down
Loading