| 152 | COLUMN_DESCRIPTION(_("Start Time")) |
| 153 | |
| 154 | wxString Value(const AssDialogue *d, const agi::Context *c) const override { |
| 155 | if (by_frame) |
| 156 | return std::to_wstring(c->videoController->FrameAtTime(d->Start, agi::vfr::START)); |
| 157 | return to_wx(d->Start.GetAssFormatted()); |
| 158 | } |
| 159 | |
| 160 | int Width(const agi::Context *c, WidthHelper &helper) const override { |
| 161 | if (!by_frame) |
nothing calls this directly
no test coverage detected