Skip to content

Commit

Permalink
Add ability to show next code
Browse files Browse the repository at this point in the history
Co-authored-by: Alexander Bakker <[email protected]>
  • Loading branch information
michaelschattgen and alexbakker committed Oct 2, 2024
1 parent 4ff4c52 commit b147e93
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,6 @@ public void startExpirationAnimation() {
} else {
_animationHandler.postDelayed(() -> {
_profileCode.setTextColor(color);
_nextProfileCode.setVisibility(View.VISIBLE);
}, info.getMillisTillNextRotation() - totalStateDuration);
}

Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/card_entry.xml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@
android:textSize="20sp"
android:textStyle="normal|bold"
android:includeFontPadding="false"
android:text="412 643"/>
tools:text="412 643"/>
</LinearLayout>

</RelativeLayout>
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/card_entry_compact.xml
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@
android:textSize="16sp"
android:textStyle="normal|bold"
android:includeFontPadding="false"
android:text="412 643"/>
tools:text="412 643"/>
</LinearLayout>


Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/card_entry_small.xml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@
android:textSize="16sp"
android:textStyle="normal|bold"
android:includeFontPadding="false"
android:text="412 643"/>
tools:text="412 643"/>
</LinearLayout>

</RelativeLayout>
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/card_entry_tile.xml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@
android:textSize="16sp"
android:textStyle="normal|bold"
android:includeFontPadding="false"
android:text="412 643"/>
tools:text="412 643"/>
</LinearLayout>

</RelativeLayout>
Expand Down

0 comments on commit b147e93

Please sign in to comment.