mirror of
https://github.com/FossifyOrg/Gallery.git
synced 2024-11-23 04:57:59 +01:00
fixing the casing of a function
This commit is contained in:
parent
450a9d96e4
commit
bd1ff2e31f
1 changed files with 2 additions and 2 deletions
|
@ -153,7 +153,7 @@ class MediaActivity : SimpleActivity(), MediaOperationsListener {
|
|||
media_horizontal_fastscroller.allowBubbleDisplay = config.showInfoBubble
|
||||
media_vertical_fastscroller.allowBubbleDisplay = config.showInfoBubble
|
||||
media_refresh_layout.isEnabled = config.enablePullToRefresh
|
||||
tryloadGallery()
|
||||
tryLoadGallery()
|
||||
invalidateOptionsMenu()
|
||||
media_empty_text_label.setTextColor(config.textColor)
|
||||
media_empty_text.setTextColor(getAdjustedPrimaryColor())
|
||||
|
@ -333,7 +333,7 @@ class MediaActivity : SimpleActivity(), MediaOperationsListener {
|
|||
}.start()
|
||||
}
|
||||
|
||||
private fun tryloadGallery() {
|
||||
private fun tryLoadGallery() {
|
||||
handlePermission(PERMISSION_WRITE_STORAGE) {
|
||||
if (it) {
|
||||
val dirName = when {
|
||||
|
|
Loading…
Reference in a new issue