diff --git a/Nasal/screen.nas b/Nasal/screen.nas index 7e2231155..dfa586ba3 100644 --- a/Nasal/screen.nas +++ b/Nasal/screen.nas @@ -549,7 +549,7 @@ _setlistener("/sim/signals/nasal-dir-initialized", func { #-- Init ----------------------------------------------------------------------- -if (getprop("/sim/chat-on-the-left")) { +if (getprop("/sim/gui/chat-box-location") == "left") { property_display = display.new(5, -250); } else { property_display = display.new(5, -25); @@ -571,7 +571,7 @@ setlistener("/sim/gui/current-style", func { theme_font = getprop("/sim/gui/selected-style/fonts/message-display/name"); }, 1); -if (getprop("/sim/chat-on-the-left")) { +if (getprop("/sim/gui/chat-box-location") == "left") { log = window.new(5, -30, 10, 10); log.align = "left"; } else { diff --git a/defaults.xml b/defaults.xml index a27e395ef..d7d21955c 100644 --- a/defaults.xml +++ b/defaults.xml @@ -730,6 +730,7 @@ Started September 2000 by David Megginson, david@megginson.com