Skip to content

Commit

Permalink
MAYA-107591: IsAbsoluteRootPath() doesn't exist in 19.11. Hence, swit…
Browse files Browse the repository at this point in the history
…ching to SdfPath::AbsoluteRootPath() instead.
  • Loading branch information
Hamed Sabri committed Oct 22, 2020
1 parent d109480 commit 3d7f677
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/mayaUsd/ufe/StagesSubject.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ void StagesSubject::stageChanged(UsdNotice::ObjectsChanged const& notice, UsdSta
// each Maya Dag path instancing the proxy shape / stage.
Ufe::Path ufePath;
UsdPrim prim;
if (changedPath.IsAbsoluteRootPath())
if (changedPath == SdfPath::AbsoluteRootPath())
{
ufePath = stagePath(sender);
prim = stage->GetPseudoRoot();
Expand Down

0 comments on commit 3d7f677

Please sign in to comment.