| 18 | namespace |
| 19 | { |
| 20 | void SetTimeDisplayMode(const CommandContext& context, TimeDisplayMode type) |
| 21 | { |
| 22 | auto& project = context.project; |
| 23 | |
| 24 | auto& ruler = AdornedRulerPanel::Get(project); |
| 25 | ruler.SetTimeDisplayMode(type); |
| 26 | |
| 27 | CommandManager::Get(project).UpdateCheckmarks(); |
| 28 | } |
| 29 | |
| 30 | void OnSetMinutesSeconds(const CommandContext& context) |
| 31 | { |
no test coverage detected