
When a user click on a 2D element i hide (visible=false) the Z position

when a user deexpand the tree

and now select a 3D element (visible the Z positions)
the inspector is showing the Z positions when expanded=false
Posted 25 July 2012 - 11:46 AM



Posted 25 July 2012 - 11:00 PM
Posted 26 July 2012 - 11:02 AM
Posted 08 August 2012 - 10:53 PM
function TNxPropertyItem.GetShown: Boolean;
begin
Result := Visible;
{ Parent }
if Assigned(ParentItem) then
begin
Result := Result and (ParentItem.Shown and not ParentItem.Hidden) and ParentItem.Expanded; // <------- updated line
end else
begin
Result := Result and not Hidden;
end;
end;
Posted 09 August 2012 - 10:04 AM
Posted 01 February 2013 - 02:50 PM
Posted 02 February 2013 - 09:17 PM
0 members, 0 guests, 0 anonymous users