@@ -22,6 +22,7 @@ export const languageEnglish = {
|
|||||||
onlyOneChat: 'There must be least one chat',
|
onlyOneChat: 'There must be least one chat',
|
||||||
alreadyCharInGroup: "There is already a character with the same name in the group.",
|
alreadyCharInGroup: "There is already a character with the same name in the group.",
|
||||||
noUserIcon: "You must set your icon first.",
|
noUserIcon: "You must set your icon first.",
|
||||||
|
emptyText: "Text is empty.",
|
||||||
},
|
},
|
||||||
showHelp: "Show Help",
|
showHelp: "Show Help",
|
||||||
help:{
|
help:{
|
||||||
|
|||||||
@@ -397,6 +397,12 @@
|
|||||||
|
|
||||||
<CheckInput bind:check={currentChar.data.inlayViewScreen} name={language.inlayViewScreen} onChange={() => {
|
<CheckInput bind:check={currentChar.data.inlayViewScreen} name={language.inlayViewScreen} onChange={() => {
|
||||||
if(currentChar.type === 'character'){
|
if(currentChar.type === 'character'){
|
||||||
|
if(currentChar.data.inlayViewScreen || currentChar.data.additionalAssets === undefined){
|
||||||
|
currentChar.data.additionalAssets = []
|
||||||
|
}else if(!currentChar.data.inlayViewScreen || currentChar.data.additionalAssets.length === 0){
|
||||||
|
currentChar.data.additionalAssets = undefined
|
||||||
|
}
|
||||||
|
|
||||||
currentChar.data = updateInlayScreen(currentChar.data)
|
currentChar.data = updateInlayScreen(currentChar.data)
|
||||||
}
|
}
|
||||||
}}/>
|
}}/>
|
||||||
|
|||||||
Reference in New Issue
Block a user