mirror of
https://github.com/amyinspace/MagicSetEditor2.git
synced 2026-06-10 13:06:59 -04:00
with paragraph_height text now resizes if a single paragraph becomes full;
Fixed issue with reader looping when save_value=false; Package manager will not contain packages that failed to load git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@681 0fc631ac-6414-0410-93d0-97cfa31319b6
This commit is contained in:
@@ -319,5 +319,5 @@ bool ChoiceValue::update(Context& ctx) {
|
||||
}
|
||||
|
||||
IMPLEMENT_REFLECTION_NAMELESS(ChoiceValue) {
|
||||
if (fieldP->save_value || tag.scripting()) REFLECT_NAMELESS(value);
|
||||
if (fieldP->save_value || tag.scripting() || tag.reading()) REFLECT_NAMELESS(value);
|
||||
}
|
||||
|
||||
@@ -98,5 +98,5 @@ bool ColorValue::update(Context& ctx) {
|
||||
}
|
||||
|
||||
IMPLEMENT_REFLECTION_NAMELESS(ColorValue) {
|
||||
if (fieldP->save_value || tag.scripting()) REFLECT_NAMELESS(value);
|
||||
if (fieldP->save_value || tag.scripting() || tag.reading()) REFLECT_NAMELESS(value);
|
||||
}
|
||||
|
||||
@@ -44,5 +44,5 @@ String ImageValue::toString() const {
|
||||
}
|
||||
|
||||
IMPLEMENT_REFLECTION_NAMELESS(ImageValue) {
|
||||
if (fieldP->save_value || tag.scripting()) REFLECT_NAMELESS(filename);
|
||||
if (fieldP->save_value || tag.scripting() || tag.reading()) REFLECT_NAMELESS(filename);
|
||||
}
|
||||
|
||||
@@ -55,5 +55,5 @@ String SymbolValue::toString() const {
|
||||
}
|
||||
|
||||
IMPLEMENT_REFLECTION_NAMELESS(SymbolValue) {
|
||||
if (fieldP->save_value || tag.scripting()) REFLECT_NAMELESS(filename);
|
||||
if (fieldP->save_value || tag.scripting() || tag.reading()) REFLECT_NAMELESS(filename);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user