| 1288 | } |
| 1289 | |
| 1290 | void |
| 1291 | ghb_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 | |
| 1304 | static void |
| 1305 | clear_audio_list_ui (void) |
no test coverage detected