mirror of
https://github.com/SimpleMobileTools/Simple-Notes.git
synced 2025-04-03 10:11:09 +02:00
add a null check to the viewpager
This commit is contained in:
parent
613eb0d7d5
commit
4c02e295f3
@ -194,7 +194,7 @@ class MainActivity : SimpleActivity(), ViewPager.OnPageChangeListener {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun currentNotesView() = mAdapter?.getItem(view_pager.currentItem)?.notes_view
|
private fun currentNotesView() = if (view_pager == null) null else mAdapter?.getItem(view_pager.currentItem)?.notes_view
|
||||||
|
|
||||||
private fun displayRenameDialog() {
|
private fun displayRenameDialog() {
|
||||||
RenameNoteDialog(this, mDb, mCurrentNote) {
|
RenameNoteDialog(this, mDb, mCurrentNote) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user