Fix path separator, revert UI

This commit is contained in:
Kyle Reed
2023-05-02 20:49:41 -07:00
parent 11f4edc892
commit 3fc23354ce
3 changed files with 16 additions and 18 deletions

View File

@@ -154,7 +154,7 @@ struct path {
path& operator/=(const path& p) {
if (_s.back() != preferred_separator)
_s + preferred_separator;
_s += preferred_separator;
_s += p._s;
return *this;
}