update platform::open_folder docs

This commit is contained in:
MihailRis 2024-10-25 14:46:18 +03:00
parent 87e3247ecf
commit df31b9e589
2 changed files with 1 additions and 2 deletions

View File

@ -49,7 +49,6 @@ std::string platform::detect_locale() {
}
#endif
void platform::open_folder(const std::filesystem::path& folder) {
if (!std::filesystem::is_directory(folder)) {
return;

View File

@ -7,7 +7,7 @@ namespace platform {
void configure_encoding();
/// @return environment locale in ISO format ll_CC
std::string detect_locale();
/// @brief Open folder using system file manager application
/// @brief Open folder using system file manager asynchronously
/// @param folder target folder
void open_folder(const std::filesystem::path& folder);
}