We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent adfd1b3 commit 549041bCopy full SHA for 549041b
wayshot/src/logic/video_editor/segment.rs
@@ -1203,6 +1203,12 @@ fn video_editor_segment_merge(ui: &AppWindow) {
1203
Ok(execute_result) => {
1204
sync_manager_to_ui(ui);
1205
refresh_affected_segments(ui, execute_result.affected_segments);
1206
+
1207
+ store_video_editor_selected_segments_index!(ui).set_vec(vec![]);
1208
+ global_ve_filter!(ui).set_selected_filter_index(-1);
1209
+ global_store!(ui).set_video_editor_segment_filter_flag(
1210
+ !global_store!(ui).get_video_editor_segment_filter_flag(),
1211
+ );
1212
crate::toast_success!(ui, "Segments merged");
1213
}
1214
Err(e) => crate::toast_warn!(ui, format!("Failed to merge segments: {}", e)),
0 commit comments