This commit is contained in:
Jobobby04 2021-07-07 20:37:14 -04:00
parent 52b748d935
commit b49c64d4ff
2 changed files with 10 additions and 1 deletions

View File

@ -77,6 +77,15 @@ interface MangaQueries : DbProvider {
.prepare()
// SY -->
fun getMangas() = db.get()
.listOfObjects(Manga::class.java)
.withQuery(
Query.builder()
.table(MangaTable.TABLE)
.build()
)
.prepare()
fun getReadNotInLibraryMangas() = db.get()
.listOfObjects(Manga::class.java)
.withQuery(

View File

@ -31,7 +31,7 @@
android:layout_weight="1"
android:contentDescription="@string/action_save"
android:tint="?attr/colorAccent"
android:background="?attr/borderlessButtonStyle"
android:background="?attr/selectableItemBackgroundBorderless"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@+id/filter_btn"
app:layout_constraintHorizontal_bias="1"