diff --git a/app/Configuration.cpp b/app/Configuration.cpp index 4844bdc..a142627 100644 --- a/app/Configuration.cpp +++ b/app/Configuration.cpp @@ -191,7 +191,7 @@ namespace sns { names.push_back(DefaultSessionName); std::string path = mergePaths(rootFolder(), PROJECTS_FOLDER_NAME); - auto contents = getDirectoryContents(path); + auto contents = getDirectoryContents(path, DirectorySorting::DirectorySortingAlphabetical); for (auto current : contents) { if (fileType(mergePaths(path, current)) != FileType::FileDirectory) continue; diff --git a/app/ConfigurationPresets.cpp b/app/ConfigurationPresets.cpp index 4c08ad9..4558d85 100644 --- a/app/ConfigurationPresets.cpp +++ b/app/ConfigurationPresets.cpp @@ -31,7 +31,7 @@ namespace sns { }; static void storeGatherJsonFolder(std::string const& path, std::vector& names) { - auto contents = getDirectoryContents(path); + auto contents = getDirectoryContents(path, DirectorySorting::DirectorySortingAlphabetical); for (auto current : contents) { if (getFileExtension(current) != "json") continue; diff --git a/app/tools/SequencerWindow.cpp b/app/tools/SequencerWindow.cpp index 2d3c79d..21390a9 100644 --- a/app/tools/SequencerWindow.cpp +++ b/app/tools/SequencerWindow.cpp @@ -241,7 +241,7 @@ namespace sns { m_cfg_updated = true; } ImGui::PopButtonRepeat(); - m_cfg.step_count = clampTo(m_cfg.step_count, 2, 40); + m_cfg.step_count = clampTo(m_cfg.step_count, 2, 64); } }