Fix recent chapters menu button not showing on high dpi screens

This commit is contained in:
len
2016-05-05 20:58:19 +02:00
parent 0de214c3b5
commit 9de3da33aa
3 changed files with 6 additions and 13 deletions

View File

@@ -40,7 +40,7 @@ class RecentChaptersHolder(view: View, private val adapter: RecentChaptersAdapte
// We need to post a Runnable to show the popup to make sure that the PopupMenu is
// correctly positioned. The reason being that the view may change position before the
// PopupMenu is shown.
itemView.chapterMenu.setOnClickListener { it.post({ showPopupMenu(it) }) }
itemView.chapter_menu.setOnClickListener { it.post({ showPopupMenu(it) }) }
}
/**