Replies: 3 comments 2 replies
-
@QiZZ121 can you please clarify what this would look like? |
Beta Was this translation helpful? Give feedback.
-
This would be a different border right? The library has some drawing code to represent a selection state. You want to draw a border around the objects, but not having them selected. The example linked from @melchiar makes sense. |
Beta Was this translation helpful? Give feedback.
-
If your goal is to keep a specific object selected (rendering borders and controls), I believe this is a good workaround. canvas.on('selection:cleared', function (e) {
canvas.setActiveObject(obj);
canvas.renderAll();
}); |
Beta Was this translation helpful? Give feedback.
-
I would like to use Text border ,and keep show when it's not selected
How can I do this
Version
3.6.6
Beta Was this translation helpful? Give feedback.
All reactions