From 73d28c67b1e6016bb98147c6b5fb41902e84fad5 Mon Sep 17 00:00:00 2001 From: Trevor SANDY Date: Sun, 13 Aug 2023 21:30:24 +0200 Subject: [PATCH] Directional light update --- qt/lc_qpropertiestree.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qt/lc_qpropertiestree.cpp b/qt/lc_qpropertiestree.cpp index 4eba20f9..f964abf5 100644 --- a/qt/lc_qpropertiestree.cpp +++ b/qt/lc_qpropertiestree.cpp @@ -1487,7 +1487,7 @@ void lcQPropertiesTree::SetLight(lcObject* Focus) if (POVRayLight) { FactorALabel = tr("Radius (°)"); - FactorAToolTip = tr("The angle between the \"hot-spot\" edge at the beam center and the center line."); + FactorAToolTip = tr("The angle between the \"hot-spot\" edge at the beam center and the center line."); SpotSizeToolTip = tr("Angle of the spotlight beam - Read only."); Factor[0] = Light->mSpotSize - Light->mSpotFalloff; SpotSizeProperty = PropertyFloatReadOnly; @@ -1500,7 +1500,7 @@ void lcQPropertiesTree::SetLight(lcObject* Focus) } break; case lcLightType::Directional: - Type = tr("Sun"); + Type = tr("Directional"); FactorALabel = tr("Angle (°)"); FactorAToolTip = tr("Angular diamater of the sun as seen from the Earth."); ExponentLabel = tr("Strength");