Skip to content

Commit

Permalink
Merge pull request #1708 from KLayout/bugfix/issue-1706
Browse files Browse the repository at this point in the history
Trying to fix bug #1706 (crash on user properties form)
  • Loading branch information
klayoutmatthias committed May 31, 2024
2 parents 879239d + 029d71f commit 3f1d9f1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/layui/layui/layDialogs.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1209,7 +1209,8 @@ UserPropertiesForm::set_meta_info (db::Layout::meta_info_iterator begin_meta, db
bool
UserPropertiesForm::show (LayoutViewBase *view, unsigned int cv_index, db::properties_id_type &prop_id)
{
return show (view, cv_index, prop_id, db::Layout::meta_info_iterator (), db::Layout::meta_info_iterator ());
db::Layout::meta_info_map no_meta;
return show (view, cv_index, prop_id, no_meta.begin (), no_meta.end ());
}

bool
Expand Down

0 comments on commit 3f1d9f1

Please sign in to comment.