Skip to content

Commit fdad02a

Browse files
committed
qp:re 3.0.0.rc6: fixes
1 parent a8ef449 commit fdad02a

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

app/src/main/java/com/mikhailgrigorev/quickpassword/ui/password/PasswordFragment.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -661,7 +661,7 @@ class PasswordFragment: Fragment() {
661661

662662
setObservers(
663663
type = PasswordGettingType.ByQuality,
664-
value = PasswordQuality.LOW.value
664+
value = PasswordQuality.MEDIUM.value
665665
)
666666
searchNegative = false
667667
searchCorrect = false
@@ -688,7 +688,7 @@ class PasswordFragment: Fragment() {
688688
)
689689
setObservers(
690690
type = PasswordGettingType.ByQuality,
691-
value = PasswordQuality.MEDIUM.value
691+
value = PasswordQuality.LOW.value
692692
)
693693
searchNotSafe = false
694694
searchCorrect = false

app/src/main/res/layout/fragment_password.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,9 @@
149149
android:contentDescription="@string/add_password"
150150
android:focusable="true"
151151
app:backgroundTint="@color/white"
152+
app:iconTint="@color/black"
153+
app:tint="@color/fabTint"
154+
app:srcCompat="@drawable/menu_up_outline"
152155
app:layout_constraintBottom_toBottomOf="parent"
153156
app:layout_constraintEnd_toEndOf="parent"
154157
app:layout_constraintStart_toStartOf="parent" />

0 commit comments

Comments
 (0)