Version 5.4.1. Minor bugs fixed.

This commit is contained in:
Docile-Alligator 2023-03-05 13:19:23 -05:00
parent c5d4ac64a0
commit 69d2cd8994
2 changed files with 3 additions and 3 deletions

View File

@ -8,8 +8,8 @@ android {
applicationId "ml.docilealligator.infinityforreddit"
minSdk 21
targetSdk 33
versionCode 114
versionName "5.4.0"
versionCode 115
versionName "5.4.1"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
javaCompileOptions {
annotationProcessorOptions {

View File

@ -435,7 +435,7 @@ public class CustomThemePreviewActivity extends AppCompatActivity implements Cus
}
protected void applyFABTheme(FloatingActionButton fab) {
fab.setBackgroundTintList(ColorStateList.valueOf(customTheme.colorPrimaryLightTheme));
fab.setBackgroundTintList(ColorStateList.valueOf(customTheme.colorAccent));
fab.setImageTintList(ColorStateList.valueOf(customTheme.fabIconColor));
}