| 960 | } |
| 961 | |
| 962 | void ghb_queue_selection_init (signal_user_data_t * ud) |
| 963 | { |
| 964 | GtkListBox * lb; |
| 965 | GtkListBoxRow * row; |
| 966 | |
| 967 | lb = GTK_LIST_BOX(ghb_builder_widget("queue_list")); |
| 968 | row = gtk_list_box_get_selected_row(lb); |
| 969 | if (row == NULL) |
| 970 | { |
| 971 | row = gtk_list_box_get_row_at_index(lb, 0); |
| 972 | if (row != NULL) |
| 973 | { |
| 974 | gtk_list_box_select_row(lb, row); |
| 975 | } |
| 976 | } |
| 977 | } |
| 978 | |
| 979 | char *ghb_subtitle_short_description (const GhbValue *subsource, |
| 980 | const GhbValue *subsettings) |
no test coverage detected