add console on_open 'mode' argument

This commit is contained in:
MihailRis
2024-11-19 08:30:50 +03:00
parent e80b10dbda
commit 78ea12aa26
4 changed files with 25 additions and 8 deletions
+4 -1
View File
@@ -194,7 +194,7 @@ function set_mode(mode)
console_mode = mode
end
function on_open()
function on_open(mode)
if modes == nil then
modes = RadioGroup({
chat=document.s_chat,
@@ -204,4 +204,7 @@ function on_open()
set_mode(mode)
end, "console")
end
if mode then
modes:set(mode)
end
end