Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Viewer
Alchemy Viewer
Commits
62aa0e80
Commit
62aa0e80
authored
2 years ago
by
Cosmic Linden
Browse files
Options
Downloads
Patches
Plain Diff
SL-18632: Un-hide planar align options when editing GLTF textures in build floater
parent
fd76c195
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
indra/newview/llpanelface.cpp
+6
-4
6 additions, 4 deletions
indra/newview/llpanelface.cpp
indra/newview/skins/default/xui/en/panel_tools_texture.xml
+1
-1
1 addition, 1 deletion
indra/newview/skins/default/xui/en/panel_tools_texture.xml
with
7 additions
and
5 deletions
indra/newview/llpanelface.cpp
+
6
−
4
View file @
62aa0e80
...
...
@@ -1003,6 +1003,8 @@ void LLPanelFace::updateUI(bool force_set_values /*false*/)
radio_pbr_type
->
selectNthItem
(
PBRTYPE_RENDER_MATERIAL_ID
);
}
radio_pbr_type
->
setEnabled
(
editable
);
const
bool
pbr_selected
=
mComboMatMedia
->
getCurrentIndex
()
==
MATMEDIA_PBR
;
const
bool
texture_info_selected
=
pbr_selected
&&
radio_pbr_type
->
getSelectedIndex
()
!=
PBRTYPE_RENDER_MATERIAL_ID
;
getChildView
(
"checkbox_sync_settings"
)
->
setEnabled
(
editable
);
childSetValue
(
"checkbox_sync_settings"
,
gSavedSettings
.
getBOOL
(
"SyncMaterialSettings"
));
...
...
@@ -1251,9 +1253,9 @@ void LLPanelFace::updateUI(bool force_set_values /*false*/)
LLCheckBoxCtrl
*
cb_planar_align
=
getChild
<
LLCheckBoxCtrl
>
(
"checkbox planar align"
);
align_planar
=
(
cb_planar_align
&&
cb_planar_align
->
get
());
bool
enabled
=
(
editable
&&
isIdenticalPlanarTexgen
());
bool
enabled
=
(
editable
&&
isIdenticalPlanarTexgen
()
&&
(
!
pbr_selected
||
texture_info_selected
)
);
childSetValue
(
"checkbox planar align"
,
align_planar
&&
enabled
);
childSetVisible
(
"checkbox planar align"
,
enabled
);
childSetVisible
(
"checkbox planar align"
,
enabled
);
childSetEnabled
(
"checkbox planar align"
,
enabled
);
childSetEnabled
(
"button align textures"
,
enabled
&&
LLSelectMgr
::
getInstance
()
->
getSelection
()
->
getObjectCount
()
>
1
);
...
...
@@ -2737,8 +2739,8 @@ void LLPanelFace::updateVisibility()
// Shared material controls
getChildView
(
"checkbox_sync_settings"
)
->
setVisible
(
show_material
||
show_media
||
show_texture_info
);
getChildView
(
"tex gen"
)
->
setVisible
(
show_material
||
show_media
);
getChildView
(
"combobox texgen"
)
->
setVisible
(
show_material
||
show_media
);
getChildView
(
"tex gen"
)
->
setVisible
(
show_material
||
show_media
||
show_texture_info
);
getChildView
(
"combobox texgen"
)
->
setVisible
(
show_material
||
show_media
||
show_texture_info
);
getChildView
(
"button align textures"
)
->
setVisible
(
show_material
||
show_media
);
// Media controls
...
...
This diff is collapsed.
Click to expand it.
indra/newview/skins/default/xui/en/panel_tools_texture.xml
+
1
−
1
View file @
62aa0e80
...
...
@@ -963,7 +963,7 @@
left=
"7"
name=
"checkbox planar align"
tool_tip=
"Align textures on all selected faces with the last selected face. Requires Planar texture mapping."
top_delta=
"
16
"
top_delta=
"
43
"
width=
"260"
/>
<button
follows=
"left|top"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment