MCPcopy Create free account
hub / github.com/HandBrake/HandBrake / ghb_clear_audio_selection

Function ghb_clear_audio_selection

gtk/src/audiohandler.c:1290–1302  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1288}
1289
1290void
1291ghb_clear_audio_selection (void)
1292{
1293 GtkTreeView *tv;
1294 GtkTreeSelection *tsel;
1295
1296 ghb_log_func();
1297 tv = GTK_TREE_VIEW(ghb_builder_widget("audio_list_view"));
1298 // Clear tree selection so that updates are not triggered
1299 // that cause a recursive attempt to clear the tree selection (crasher)
1300 tsel = gtk_tree_view_get_selection(tv);
1301 gtk_tree_selection_unselect_all(tsel);
1302}
1303
1304static void
1305clear_audio_list_ui (void)

Callers 1

ghb_load_post_settingsFunction · 0.85

Calls 1

ghb_builder_widgetFunction · 0.85

Tested by

no test coverage detected