Qt Editor: Fix shape relative default

qteditor
Sven Eberhardt 2016-06-18 10:43:00 -04:00
parent a598dee4e1
commit 08b7980d69
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ C4ConsoleQtShape::C4ConsoleQtShape(C4Object *for_obj, C4PropList *props)
rel_obj.SetPropList(for_obj);
if (props)
{
is_relative = props->GetPropertyBool(P_Relative);
is_relative = props->GetPropertyBool(P_Relative, is_relative);
border_color = props->GetPropertyInt(P_Color) | 0xff000000;
}
}