| 2409 | } |
| 2410 | |
| 2411 | void lf_div_end() { |
| 2412 | if(state.current_div.scrollable) { |
| 2413 | draw_scrollbar_on(&state.selected_div_tmp); |
| 2414 | } |
| 2415 | |
| 2416 | state.pos_ptr = state.prev_pos_ptr; |
| 2417 | state.font_stack = state.prev_font_stack; |
| 2418 | state.current_line_height = state.prev_line_height; |
| 2419 | state.current_div = state.prev_div; |
| 2420 | state.cull_start = (vec2s){-1, -1}; |
| 2421 | state.cull_end = (vec2s){-1, -1}; |
| 2422 | } |
| 2423 | |
| 2424 | |
| 2425 | LfClickableItemState _lf_item_loc(vec2s size, const char* file, int32_t line) { |
no test coverage detected