mirror of
				https://github.com/mihonapp/mihon.git
				synced 2025-11-04 08:08:55 +01:00 
			
		
		
		
	Long press reader settings icon to open color filter tab
Partially addresses #4867
This commit is contained in:
		@@ -414,6 +414,11 @@ class ReaderActivity : BaseRxActivity<ReaderActivityBinding, ReaderPresenter>()
 | 
			
		||||
            setOnClickListener {
 | 
			
		||||
                ReaderSettingsSheet(this@ReaderActivity).show()
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            setOnLongClickListener {
 | 
			
		||||
                ReaderSettingsSheet(this@ReaderActivity, showColorFilterSettings = true).show()
 | 
			
		||||
                true
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -8,7 +8,10 @@ import eu.kanade.tachiyomi.ui.reader.ReaderActivity
 | 
			
		||||
import eu.kanade.tachiyomi.widget.SimpleTabSelectedListener
 | 
			
		||||
import eu.kanade.tachiyomi.widget.sheet.TabbedBottomSheetDialog
 | 
			
		||||
 | 
			
		||||
class ReaderSettingsSheet(private val activity: ReaderActivity) : TabbedBottomSheetDialog(activity) {
 | 
			
		||||
class ReaderSettingsSheet(
 | 
			
		||||
    private val activity: ReaderActivity,
 | 
			
		||||
    showColorFilterSettings: Boolean = false,
 | 
			
		||||
) : TabbedBottomSheetDialog(activity) {
 | 
			
		||||
 | 
			
		||||
    private val readingModeSettings = ReaderReadingModeSettings(activity)
 | 
			
		||||
    private val generalSettings = ReaderGeneralSettings(activity)
 | 
			
		||||
@@ -40,6 +43,10 @@ class ReaderSettingsSheet(private val activity: ReaderActivity) : TabbedBottomSh
 | 
			
		||||
                }
 | 
			
		||||
            }
 | 
			
		||||
        })
 | 
			
		||||
 | 
			
		||||
        if (showColorFilterSettings) {
 | 
			
		||||
            binding.tabs.getTabAt(filterTabIndex)?.select()
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    override fun getTabViews() = listOf(
 | 
			
		||||
 
 | 
			
		||||
@@ -8,7 +8,7 @@ import eu.kanade.tachiyomi.widget.ViewPagerAdapter
 | 
			
		||||
 | 
			
		||||
abstract class TabbedBottomSheetDialog(private val activity: Activity) : BaseBottomSheetDialog(activity) {
 | 
			
		||||
 | 
			
		||||
    val binding: CommonTabbedSheetBinding = CommonTabbedSheetBinding.inflate(activity.layoutInflater)
 | 
			
		||||
    val binding = CommonTabbedSheetBinding.inflate(activity.layoutInflater)
 | 
			
		||||
 | 
			
		||||
    init {
 | 
			
		||||
        val adapter = LibrarySettingsSheetAdapter()
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user