Linux compile error fix regarding FreezeTime - FreezeTime is a Bool, not an F32.
Tools floater was fixed so that the Last Owner text would fade out properly. Minor tweak to the wlf settings again, to hopefully ensure it will always start closed. Signed-off-by: Beeks <HgDelirium@gmail.com>
This commit is contained in:
@@ -601,7 +601,7 @@
|
||||
<key>Comment</key>
|
||||
<string>Show Windlight popup</string>
|
||||
<key>Persist</key>
|
||||
<integer>1</integer>
|
||||
<integer>0</integer>
|
||||
<key>Type</key>
|
||||
<string>Boolean</string>
|
||||
<key>Value</key>
|
||||
|
||||
@@ -1981,7 +1981,7 @@ void LLAgent::cameraOrbitIn(const F32 meters)
|
||||
|
||||
mCameraZoomFraction = (mTargetCameraDistance - meters) / camera_offset_dist;
|
||||
|
||||
if (!gSavedSettings.getF32("FreezeTime") && mCameraZoomFraction < MIN_ZOOM_FRACTION && meters > 0.f)
|
||||
if (!gSavedSettings.getBOOL("FreezeTime") && mCameraZoomFraction < MIN_ZOOM_FRACTION && meters > 0.f)
|
||||
{
|
||||
// No need to animate, camera is already there.
|
||||
changeCameraToMouselook(FALSE);
|
||||
|
||||
@@ -373,7 +373,7 @@
|
||||
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom_delta="-20" drop_shadow_visible="true" follows="left|top"
|
||||
font="SansSerifSmall" h_pad="0" halign="left" height="16" left="10"
|
||||
mouse_opaque="true" name="LastOwner:" v_pad="0" width="78">
|
||||
mouse_opaque="true" name="Last Owner:" v_pad="0" width="78">
|
||||
Last Owner:
|
||||
</text>
|
||||
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
|
||||
Reference in New Issue
Block a user