-
Notifications
You must be signed in to change notification settings - Fork 416
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
Windows of Window(Left|Right) are not isolated from each other #652
Comments
This is by-design. You are allowed to do what you want with the returned windows. What's important is that those windows are independent of each other as well as the original sequence from which they were created such that modifying an element through one window doesn't affect others or the source. |
@atifaziz That is exactly what I show here: windows are not independent from each others Please reopen this issue. |
I re-read the code and you're absolutely right. Sorry for closing this but your explanation and test in #653 didn't read clear enough. Thanks for persevering. |
List returned by Window* methods should be isolated from each other.
With current implementation, modifying one window will modify the next windows accordingly:
The text was updated successfully, but these errors were encountered: