mirror of
				https://github.com/SimpleMobileTools/Simple-Gallery.git
				synced 2025-06-05 21:59:19 +02:00 
			
		
		
		
	fix a glitch with fullscreen view bottom actions being at the top
This commit is contained in:
		| @@ -758,7 +758,8 @@ class ViewPagerActivity : SimpleActivity(), ViewPager.OnPageChangeListener, View | |||||||
|     } |     } | ||||||
|  |  | ||||||
|     private fun initBottomActionsLayout() { |     private fun initBottomActionsLayout() { | ||||||
|         bottom_actions.layoutParams.height = resources.getDimension(R.dimen.bottom_actions_height).toInt() + navigationBarHeight |         val useNavigationBarHeight = if (navigationBarBottom) navigationBarHeight else 0 | ||||||
|  |         bottom_actions.layoutParams.height = resources.getDimension(R.dimen.bottom_actions_height).toInt() + useNavigationBarHeight | ||||||
|         if (config.bottomActions) { |         if (config.bottomActions) { | ||||||
|             bottom_actions.beVisible() |             bottom_actions.beVisible() | ||||||
|         } else { |         } else { | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user