Fix: Exception thrown when displaying spreadsheet

Problem in 660867fa00.
Comment out the offending assert for now until it can be fixed later.
This commit is contained in:
Hans Goudey
2024-02-02 14:07:00 -05:00
parent 319b911784
commit eb71d9f7bc

View File

@@ -526,8 +526,8 @@ bool AbstractTreeViewItem::set_collapsed(const bool collapsed)
bool AbstractTreeViewItem::is_collapsible() const
{
BLI_assert_msg(get_tree_view().is_reconstructed(),
"State can't be queried until reconstruction is completed");
// BLI_assert_msg(get_tree_view().is_reconstructed(),
// "State can't be queried until reconstruction is completed");
if (children_.is_empty()) {
return false;
}