Fix: properly load content from preferences in merge screen
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,4 +1,4 @@
|
||||
#Fri Mar 06 22:33:52 CST 2026
|
||||
#Fri Mar 06 22:42:09 CST 2026
|
||||
path.4=14/classes.dex
|
||||
path.3=12/classes.dex
|
||||
path.2=10/classes.dex
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
פ8מ)ת*ר'‗&ט%<EFBFBD>!
|
||||
פ8מ)ת*ר'‗&ט%<EFBFBD>!ר
|
||||
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,2 +1,2 @@
|
||||
36
|
||||
37
|
||||
0
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
ëXè¾ú¹Ñ~Ì>Ňôï`ý¿ÄJùÉïNÔ›î×úbå4å²×?Í#
|
||||
ëXè¾ú¹Ñ~Ì>Ňôï`ý¿ÄJùÉïNÔ›î×úbå4å²×?Í#à“À2
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -162,11 +162,21 @@ fun MergeScreen(
|
||||
preferencesManager.contentStyle.collect { contentStyle = it }
|
||||
}
|
||||
LaunchedEffect(Unit) {
|
||||
launch { preferencesManager.mergeTitle.collect { title = it } }
|
||||
launch { preferencesManager.mergeContent.collect { content = it } }
|
||||
preferencesManager.mergeTitle.collect { savedTitle ->
|
||||
if (savedTitle.isNotEmpty()) {
|
||||
title = savedTitle
|
||||
}
|
||||
}
|
||||
}
|
||||
LaunchedEffect(Unit) {
|
||||
launch { preferencesManager.recorderName.collect { recorderName = it } }
|
||||
preferencesManager.mergeContent.collect { savedContent ->
|
||||
if (savedContent.isNotEmpty()) {
|
||||
content = savedContent
|
||||
}
|
||||
}
|
||||
}
|
||||
LaunchedEffect(Unit) {
|
||||
preferencesManager.recorderName.collect { recorderName = it }
|
||||
}
|
||||
|
||||
// 保存标题和内容到偏好设置
|
||||
|
||||
Reference in New Issue
Block a user