Merge pull request #1708 from KLayout/bugfix/issue-1706

Trying to fix bug #1706 (crash on user properties form)
This commit is contained in:
Matthias Köfferlein 2024-05-31 13:16:39 +02:00 committed by GitHub
commit 3f1d9f17bc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -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