| 981 | } |
| 982 | |
| 983 | static BitmapCol LBackend_TableRowColor(struct LTable* w, int row) { |
| 984 | struct ServerInfo* entry = row < w->rowsCount ? LTable_Get(row) : NULL; |
| 985 | cc_bool selected = entry && String_Equals(&entry->hash, w->selectedHash); |
| 986 | cc_bool featured = entry && entry->featured; |
| 987 | |
| 988 | return LTable_RowColor(row, selected, featured); |
| 989 | } |
| 990 | |
| 991 | /* Draws background behind each row in the table */ |
| 992 | static void LTable_DrawRowsBackground(struct LTable* w) { |
no test coverage detected