| 2656 | } |
| 2657 | |
| 2658 | bool Timeline::onCopy(Context* ctx) |
| 2659 | { |
| 2660 | if (m_range.enabled()) { |
| 2661 | const ContextReader reader(ctx); |
| 2662 | if (reader.document()) { |
| 2663 | clipboard::copy_range(reader, m_range); |
| 2664 | return true; |
| 2665 | } |
| 2666 | } |
| 2667 | return false; |
| 2668 | } |
| 2669 | |
| 2670 | bool Timeline::onPaste(Context* ctx) |
| 2671 | { |
no test coverage detected