diff options
author | William Weaver <paperwork.resident@gmail.com> | 2025-04-02 03:45:54 +0300 |
---|---|---|
committer | William Weaver <paperwork.resident@gmail.com> | 2025-04-02 03:45:54 +0300 |
commit | 61ba4b0d7705ca12b606d238d48a0b1bc370bf31 (patch) | |
tree | b67221007bc4d1499b929df463a812aa44b97895 /indra | |
parent | 37b26062cf5fd978b55ee01ed676b401c27e4d90 (diff) |
Fix(XUI): Remove unrecognized user_resize attribute from sun_moon_trackball
Problem:
A warning "Failed to parse parameter 'user_resize.'" appeared in the logs during UI loading, originating from sun_moon_trackball.xml.
Cause:
The 'user_resize' attribute is not a recognized or utilized parameter for the 'sun_moon_trackball' widget type, as defined in the corresponding C++
(LLVirtualTrackball).
Solution:
Removed the extraneous 'user_resize="false"' line from the sun_moon_trackball.xml widget definition.
Result:
Eliminates the parsing warning from the logs upon viewer startup or UI reload.
Testing:
- Launch viewer.
- Check logs for the absence of the "Failed to parse parameter 'user_resize.'" warning.
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/skins/default/xui/en/widgets/sun_moon_trackball.xml | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/indra/newview/skins/default/xui/en/widgets/sun_moon_trackball.xml b/indra/newview/skins/default/xui/en/widgets/sun_moon_trackball.xml index cdeff6ab05..f246ff764a 100644 --- a/indra/newview/skins/default/xui/en/widgets/sun_moon_trackball.xml +++ b/indra/newview/skins/default/xui/en/widgets/sun_moon_trackball.xml @@ -3,7 +3,6 @@ name="virtualtrackball" width="150" height="150" - user_resize="false" increment_angle_mouse="1.5f" increment_angle_btn="1.0f" image_sphere="VirtualTrackball_Sphere" |