Create text on second Part(volume) of object

This commit is contained in:
Filip Sykala 2022-02-01 18:31:27 +01:00
parent 936ba6c28c
commit 1078fe55ec
7 changed files with 151 additions and 52 deletions

View file

@ -103,6 +103,15 @@ struct FontItem
wx_mac_font_descr // path is font descriptor generated by wxWidgets on windows
};
bool operator==(const FontItem &other) const {
return
type == other.type &&
prop == other.prop &&
name == other.name &&
path == other.path
;
}
// undo / redo stack recovery
template<class Archive> void serialize(Archive &ar)
{