...
This commit is contained in:
parent
5b86fc7e2b
commit
c8000d022c
@ -760,6 +760,7 @@ function extractSubtitleList() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
function scrollToEndAndExtract() {
|
function scrollToEndAndExtract() {
|
||||||
|
if (location.host.includes("subtitlecat.com")) {
|
||||||
const scrollStep = 800; // 한 번에 스크롤할 양
|
const scrollStep = 800; // 한 번에 스크롤할 양
|
||||||
const scrollDelay = 500; // 다음 스크롤까지 대기 시간 (ms)
|
const scrollDelay = 500; // 다음 스크롤까지 대기 시간 (ms)
|
||||||
|
|
||||||
@ -780,6 +781,7 @@ function scrollToEndAndExtract() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
step();
|
step();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -543,7 +543,7 @@ class CompletedFilesFragment : Fragment() {
|
|||||||
// 💡 선택 액션 바 버튼 이벤트
|
// 💡 선택 액션 바 버튼 이벤트
|
||||||
view.findViewById<View>(R.id.btnSelectAll)?.setOnClickListener {
|
view.findViewById<View>(R.id.btnSelectAll)?.setOnClickListener {
|
||||||
selectedFiles.clear()
|
selectedFiles.clear()
|
||||||
selectedFiles.addAll(adapter.getAll())
|
selectedFiles.addAll(adapter.getAll().filter { it.name.contains("..") == false })
|
||||||
adapter.updateSelection(selectedFiles)
|
adapter.updateSelection(selectedFiles)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user