| 2580 | } |
| 2581 | |
| 2582 | void TextureViewer::thumb_doubleClicked(QMouseEvent *e) |
| 2583 | { |
| 2584 | if(e->buttons() & Qt::LeftButton) |
| 2585 | { |
| 2586 | ResourceId id = m_Following.GetResourceId(m_Ctx); |
| 2587 | |
| 2588 | if(id != ResourceId()) |
| 2589 | { |
| 2590 | ViewTexture(id, m_Following.GetTypeHint(m_Ctx), false); |
| 2591 | } |
| 2592 | } |
| 2593 | } |
| 2594 | |
| 2595 | void TextureViewer::thumb_clicked(QMouseEvent *e) |
| 2596 | { |
nothing calls this directly
no test coverage detected