-
Notifications
You must be signed in to change notification settings - Fork 309
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
undo/redo時にノートの選択が解除されないのを修正 #1916
undo/redo時にノートの選択が解除されないのを修正 #1916
Conversation
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.
トーク側に合わせて、値を_selectedNoteIds
に保存してSELECTED_NOTE_IDS
getterで良い感じにフィルタしながら取る形にしてもいいかも?
@sevenc-nanashi |
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.
LGTM!!
修正ありがとうございます!
@sevenc-nanashi さんのおっしゃる通り、フィルタリングする形が良いのかなと思いました!
多分undo/redo以外にも選択ノートの妙な変更が実装される可能性があるので、その時に毎回手続き的にselect/deselectしているといつか間違う気がするので、GETTERのが良さそうに感じました。
とりあえず こちらで to do コメントだけ書き換えさせていただいてマージします!
こちらの変更はホットフィックスとして0.17.1に取り込みたいと思います!
こちら忘れないようにissue作成します! |
内容
undo/redo時にノートの選択が解除されておらず、
ADD_NOTES
をundoしたときに存在しないノートのIDがselectedNoteIds
に入ってしまっていたので、修正します。その他