mirror of https://github.com/odrling/Aegisub
Don't automatically select all control handle in the vector clip tool
This was originally done because there was no easy way to select them all otherwise, but box selection of handles has been supported for a while now.
This commit is contained in:
parent
e48e8cef84
commit
6e40f4f920
|
@ -445,11 +445,4 @@ void VisualToolVectorClip::DoRefresh() {
|
|||
spline.DecodeFromAss(vect);
|
||||
|
||||
MakeFeatures();
|
||||
SelectAll();
|
||||
}
|
||||
|
||||
void VisualToolVectorClip::SelectAll() {
|
||||
sel_features.clear();
|
||||
for (auto& feature : features)
|
||||
sel_features.insert(&feature);
|
||||
}
|
||||
|
|
|
@ -45,7 +45,6 @@ class VisualToolVectorClip final : public VisualTool<VisualToolVectorClipDraggab
|
|||
void Save();
|
||||
void Commit(wxString message="") override;
|
||||
|
||||
void SelectAll();
|
||||
void MakeFeature(size_t idx);
|
||||
void MakeFeatures();
|
||||
|
||||
|
|
Loading…
Reference in New Issue