| 113 | } |
| 114 | |
| 115 | void TimeEdit::UpdateText() { |
| 116 | if (byFrame) |
| 117 | ChangeValue(std::to_wstring(c->project->Timecodes().FrameAtTime(time, isEnd ? agi::vfr::END : agi::vfr::START))); |
| 118 | else |
| 119 | ChangeValue(to_wx(time.GetAssFormatted())); |
| 120 | } |
| 121 | |
| 122 | void TimeEdit::OnKeyDown(wxKeyEvent &event) { |
| 123 | int kc = event.GetKeyCode(); |
nothing calls this directly
no test coverage detected