Skip to content

Commit dca84a6

Browse files
derlerkclaude
andcommitted
SdfUndo block
ort for the RenderSetup. 782136578 -0400 gpgsig -----BEGIN PGP SIGNATURE----- wsFcBAABCAAQBQJqOT8CCRC1aQ7uu5UhlAAAXSsQAJD+nu5KEYM182GvaoREF2T3 VXGtpZyOxsyDXDmeokiiAGY+vo08ZKnMAtRKoCSB4J5fe95bI5iQG3VXjWG7oSpk mvzWMP7/r/OHpPmW7J0UA2yYOLX+MMvF5KdiuCiHJqqc0G/tpZnswNy4cz52AP6W +PXcGY58HYgwZ50RCSHRrRg9F44zqCfEJt40aqTC48jDtXSL+2O5Dx/ZIV6J12T/ AIyBMzJKp2Omccp/mO7A8H0NCT749XPmFzsUzplWjAG/+Yf19OpaSbGgxksKnBZK SsNh70+PQpM9OVwT4sQkopjrJJzpPG+hA1YpfiahF3ZnO7+k2NqF6/4wIKMuW8rR itMMjK73Lx4Ev4kG8sKEaEY7IvjYyXZqkx9BQCAMC2QhgdRzaI1raR1YUSS7yfhj 20KDoWxj65qZ25RVg0PVlBTTZAjculPoKLHc+ApePQGpeVRRzN8BdXsRrfAy/8oq U1ajtTlclBk3XBkFGQBBuTZjl9nW/MXRVI21l7RMtKFFMzuCBYM4b0bQna+PlKcj V4MEDStii3SwcpxAXXPCj8SJYodYNsXUX1ulmHb/uxehFtTXCn7libbuRnLV3Wtp N+rk7B0BoJDDcnxpjqiGeNX0kbSmfywuyX+BGB+F/zxUeGGgU/snt2AO9sw8mr7g kmByzCDMP5fFwAqaOste =oVJ2 -----END PGP SIGNATURE----- Merge pull request #4642 from jufrantz/automatic_loading_of_chaser_plugins Automatic loading of `ExportChaser` and `ImportChaser` pluginsis no…both unchanged. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> opic.com>
1 parent b08ca7b commit dca84a6

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

lib/usd/ui/renderSetup/MayaEditCommitter.cpp

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020

2121
#include <usdUfe/undo/UsdUndoUtils.h>
2222

23+
#include <pxr/usd/sdf/changeBlock.h>
24+
2325
#include <maya/MGlobal.h>
2426
#include <maya/MString.h>
2527

@@ -96,7 +98,10 @@ void MayaEditCommitter::commit(const std::string& undoLabel, std::function<void(
9698
openUndoChunk(undoLabel);
9799
const UndoChunkGuard undoChunkGuard;
98100
MayaUsd::MayaUsdUndoBlock block;
99-
doEdit();
101+
{
102+
PXR_NS::SdfChangeBlock changeBlock;
103+
doEdit();
104+
}
100105
}
101106

102107
} // namespace MayaUsdRenderSetup

0 commit comments

Comments
 (0)