Fixes fuer Anzeige von Signalbegriff im Tooltip

This commit is contained in:
Nero 2022-06-23 09:13:34 +00:00
parent d4878f781c
commit ce0a2c21ed
2 changed files with 6 additions and 4 deletions

View File

@ -44,12 +44,12 @@ function BegriffErklaeren(Begriff)
if Begriff[1]==HALT then return "Halt" end if Begriff[1]==HALT then return "Halt" end
if Begriff[1]==RANGIERFAHRT then return "Rangierfahrt" end if Begriff[1]==RANGIERFAHRT then return "Rangierfahrt" end
if Begriff[1]==ERSATZFAHRT then return "Fahrt auf Ersatzsignal" end if Begriff[1]==ERSATZFAHRT then return "Fahrt auf Ersatzsignal" end
if Begriff[1]==AUS then return "Signal ausgeschaltet" end if Begriff[1]==AUS then return "Aus" end
local txt = "Fahrt" local txt = "Fahrt"
if Begriff.H_erwarten ~= nil then if Begriff.H_erwarten ~= nil then
txt = "Halt erwarten" txt = "Halt erwarten"
if Begriff.kurz ~= nil then if Begriff.kurz then
txt = "Halt im verkürzten Abstand" txt = txt.." (kurzer Bremsweg)"
end end
end end
if Begriff.V_max then if Begriff.V_max then

View File

@ -278,7 +278,9 @@ function KsKitMain()
local txt = "<c>Signal "..name local txt = "<c>Signal "..name
local Begriff = leseSignal(Signal) local Begriff = leseSignal(Signal)
local Farbe = "<fgrgb=255,255,255><bgrgb=255,0,0>" local Farbe = "<fgrgb=255,255,255><bgrgb=255,0,0>"
if Begriff[1] ~= HALT then if Begriff[1] == AUS then
Farbe = ""
elseif Begriff[1] ~= HALT then
if Begriff.H_erwarten or Begriff.V_max then if Begriff.H_erwarten or Begriff.V_max then
Farbe = "<fgrgb=0,0,0><bgrgb=255,255,0>" Farbe = "<fgrgb=0,0,0><bgrgb=255,255,0>"
else else