Skip to content

Commit

Permalink
Hiding fast scroll in library for now
Browse files Browse the repository at this point in the history
  • Loading branch information
Jays2Kings committed Jan 6, 2020
1 parent 858c498 commit 01f746e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ abstract class DialogController : RestoreViewOnCreateController {

override fun onCreateView(inflater: LayoutInflater, container: ViewGroup, savedViewState: Bundle?): View {
dialog = onCreateDialog(savedViewState)
dialog!!.ownerActivity = activity
//dialog!!.ownerActivity = activity
dialog!!.setOnDismissListener { dismissDialog() }
if (savedViewState != null) {
val dialogState = savedViewState.getBundle(SAVED_DIALOG_STATE_TAG)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ class LibraryCategoryView @JvmOverloads constructor(context: Context, attrs: Att
swipe_refresh.isEnabled = firstPos <= 0
}
})
fast_scroller?.gone()
recycler.doOnApplyWindowInsets { v, insets, padding ->
v.updatePaddingRelative(bottom = padding.bottom + insets.systemWindowInsetBottom)

Expand Down
9 changes: 9 additions & 0 deletions app/src/main/res/raw/changelog_release.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<changelog bulletedList="true">
<changelogversion versionName="v0.9.55" changeDate="">
<changelogtext>Drag &amp; Drop support in Library</changelogtext>
<changelogtext>Optimizations for the auto-migration, should now find alternative titles for mangas</changelogtext>
<changelogtext>Fast scrolling in library</changelogtext>
<changelogtext>(From dev) faster loading when scrubbing the reader's seekbar</changelogtext>
<changelogtext>Barely smaller app size</changelogtext>
<changelogtext>Fix extension notifcation sometimes not showing</changelogtext>
</changelogversion>

<changelogversion versionName="v0.9.5" changeDate="">
<changelogtext>Mass/Automatic Source Migration</changelogtext>
<changelogtext>Fix single tag searching + multi tag searching by commas (ie. "Romance, -Harem, Comedy")</changelogtext>
Expand Down

0 comments on commit 01f746e

Please sign in to comment.