-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
feat: Add isolatemode of group. #10748
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
feat: Add isolatemode of group. #10748
Conversation
Review or Edit in CodeSandboxOpen the branch in Web Editor • VS Code • Insiders |
* @private | ||
*/ | ||
declare private _willAddMouseDown: number; | ||
private declare _willAddMouseDown: number; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this change doesn't seem relevant to the feature you added
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, this is not relevant to the feature, it was format automatically when saving. it is default format after typescript 4.0.
If this doesn't fit, I'll restore it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would refrain from making any changes that are unrelated to the problem you are trying to solve
just adds extra burden to the reviewers and makes the diff larger
was this feature discussed before as acceptable, before you implemented it? is there an issue you can link to? |
Our graphic editor based fabric uses a tree structure and needs to modify child nodes directly. So we implemented it, and I think this feature will be useful to others. |
@asturur has the last word here |
We can't insert every feature that every editor wants. |
The point made by @Smrtnyk is correct. If you want to contribute discuss the feature first and see what are the options to make your feature available to the community. The projects needs documentation above anything else, examples, explanations, tutorials. Adding features is not really convenient at this stage |
OK,I'll find a better way. About event driven feature, can you give me more detail. I'm not familiar with it. |
Description
Hello, since fabric 6, fabric support Group better. But it can not select object in group on UI.
I add a option 'dblClickIsolateObject' in CanvasOptions.
Turn on this option by
When double click on a group, we can select the children of this group.
In Action