| 682 | } |
| 683 | |
| 684 | std::string GetThemeFileName(const std::string& name) |
| 685 | { |
| 686 | auto themeDirectory = GetThemePath(); |
| 687 | auto themePath = Path::Combine(themeDirectory, name + u8".json"); |
| 688 | return themePath; |
| 689 | } |
| 690 | |
| 691 | bool EnsureThemeDirectoryExists() |
| 692 | { |
no test coverage detected