UI: Asset Shelf (Experimental Feature) #104831

Closed
Julian Eisel wants to merge 399 commits from asset-shelf into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
1 changed files with 3 additions and 0 deletions
Showing only changes of commit e28d0720ae - Show all commits

View File

@ -332,6 +332,9 @@ std::string AssetLibraryService::normalize_asset_weak_reference_relative_asset_i
alt_group_len = uint64_t(relative_asset_identifier.find(ALTSEP));
group_len = int64_t(
std::min(uint64_t(relative_asset_identifier.find(SEP, int64_t(offset))), alt_group_len));
std::cout << offset << " " << group_len << "\n";
group_len += offset;
std::cout << relative_asset_identifier.find(SEP) << " " << alt_group_len << " ==> " << group_len