| 434 | #pragma warning( pop ) |
| 435 | |
| 436 | static void AddUnderLine(const ImColor& col) |
| 437 | { |
| 438 | ImVec2 min = GetItemRectMin(); |
| 439 | const ImVec2 max = GetItemRectMax(); |
| 440 | min.y = max.y; |
| 441 | GetWindowDrawList()->AddLine(min, max, col, 1.0f); |
| 442 | } |
| 443 | |
| 444 | static void TextURL(const char* name, const char* url, uint8_t sameLineBefore = 1, uint8_t sameLineAfter = 1) |
| 445 | { |