mirror of
https://github.com/amyinspace/MagicSetEditor2.git
synced 2026-06-10 13:06:59 -04:00
Fixed: keys without save_value caused reader to loop
Fixed: first line of multi line text value could cause warnings about whitespace Fixed some copy/paste errors in choice style reading; Text viewer correctly uses mask for first line git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@604 0fc631ac-6414-0410-93d0-97cfa31319b6
This commit is contained in:
@@ -26,7 +26,7 @@ DECLARE_DYNAMIC_ARG(SymbolFont*, symbol_font_for_reading);
|
||||
IMPLEMENT_DYNAMIC_ARG(SymbolFont*, symbol_font_for_reading, nullptr);
|
||||
|
||||
SymbolFont::SymbolFont()
|
||||
: img_size(12), min_size(1)
|
||||
: img_size(12)
|
||||
, spacing(1,1)
|
||||
, scale_text(false)
|
||||
, text_margin_left(0), text_margin_right(0)
|
||||
@@ -51,7 +51,6 @@ IMPLEMENT_REFLECTION(SymbolFont) {
|
||||
REFLECT_ALIAS(300, "text align", "text alignment");
|
||||
|
||||
REFLECT_N("image font size", img_size);
|
||||
REFLECT_N("scale down to", min_size);
|
||||
REFLECT_N("horizontal space", spacing.width);
|
||||
REFLECT_N("vertical space", spacing.height);
|
||||
WITH_DYNAMIC_ARG(symbol_font_for_reading, this);
|
||||
|
||||
Reference in New Issue
Block a user