mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-13 08:04:22 +01:00
[TGUI v6] Migration to CSS Variables, styles refactor & React 19 (#17487)
* Initial Port of tg's tgui 2.0 * initial * first UI fixes * fix retro theme * rd console * wiki theme * better tgui say handling * Ui scaling port * smaller gap * guh * reset subcats on main cat change * blink a bit later * tofixed * fixed * currently not fully supported * increase that * fix powermonitor chart * typescript up * tgui core up
This commit is contained in:
@@ -68,13 +68,14 @@
|
||||
|
||||
var/minimum_width = client?.prefs?.read_preference(/datum/preference/numeric/tgui_say_width) || 1
|
||||
var/minimum_height = (client?.prefs?.read_preference(/datum/preference/numeric/tgui_say_height) || 1) * 20 + 10
|
||||
winset(client, "tgui_say", "pos=410,400;size=360,30;is-visible=0;")
|
||||
winset(client, "tgui_say", "pos=410,400;is-visible=0;")
|
||||
|
||||
window.send_message("props", list(
|
||||
lightMode = client?.prefs?.read_preference(/datum/preference/toggle/tgui_say_light),
|
||||
minimumWidth = minimum_width,
|
||||
minimumHeight = minimum_height,
|
||||
maxLength = max_length,
|
||||
"lightMode" = client?.prefs?.read_preference(/datum/preference/toggle/tgui_say_light),
|
||||
"scale" = client.prefs?.read_preference(/datum/preference/toggle/ui_scale),
|
||||
"minimumWidth" = minimum_width,
|
||||
"minimumHeight" = minimum_height,
|
||||
"maxLength" = max_length,
|
||||
))
|
||||
|
||||
stop_thinking()
|
||||
|
||||
Reference in New Issue
Block a user