| 69 | } |
| 70 | |
| 71 | void DrawingProgram::on_tab_out() { |
| 72 | tempMoveToolSwitch = TemporaryMoveToolSwitch::NONE; |
| 73 | selection.deselect_all(); |
| 74 | controls.leftClickHeld = false; |
| 75 | controls.middleClickHeld = false; |
| 76 | } |
| 77 | |
| 78 | void DrawingProgram::input_paste_callback(const CustomEvents::PasteEvent& paste) { |
| 79 | if(paste.type == CustomEvents::PasteEvent::DataType::IMAGE) |
nothing calls this directly
no test coverage detected