| 331 | } |
| 332 | |
| 333 | bool DropdownList::DropdownClickedAt(int x, int y) |
| 334 | { |
| 335 | int index = GetItemIndexAt(x, y); |
| 336 | if (index >= 0 && index < mElements.size()) |
| 337 | { |
| 338 | SetIndex(index, NextBufferTime(false), K(forceUpdate)); |
| 339 | return true; |
| 340 | } |
| 341 | return false; |
| 342 | } |
| 343 | |
| 344 | namespace |
| 345 | { |
no test coverage detected