ISSUE 2: fix copy selection

This commit is contained in:
Ayobami
2025-07-02 16:02:47 +01:00
parent 9ada6f005f
commit 00f9c602af
@@ -513,6 +513,12 @@ export const DockBuilder = () => {
const CopySelection = () => {
// TODO: Copy selection
const activeObject = editorMemo.getActiveObject();
if (activeObject) {
activeObject.clone(function (cloned) {
clipboard = cloned;
});
}
};
const PasteSelection = () => {