mirror of https://github.com/KLayout/klayout.git
Merge pull request #1708 from KLayout/bugfix/issue-1706
Trying to fix bug #1706 (crash on user properties form)
This commit is contained in:
commit
3f1d9f17bc
|
|
@ -1209,7 +1209,8 @@ UserPropertiesForm::set_meta_info (db::Layout::meta_info_iterator begin_meta, db
|
||||||
bool
|
bool
|
||||||
UserPropertiesForm::show (LayoutViewBase *view, unsigned int cv_index, db::properties_id_type &prop_id)
|
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
|
bool
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue