Make sure to apply the changes, when changing properties.

This commit is contained in:
dfighter1985 2013-05-10 00:55:23 +02:00
parent 43019419af
commit 2dbf68d6e4
4 changed files with 10 additions and 6 deletions

View file

@ -3300,9 +3300,6 @@ namespace NLGUI
v->setParent( g );
// Invalidate so it shows up!
v->invalidateCoords();
notifyAdditionWatchers( v->getId() );
return v;

View file

@ -123,8 +123,9 @@ namespace GUIEditor
e->setParentPosRef( Hotspot_TL );
e->setPosRef( Hotspot_TL );
// Apply the new settings
e->invalidateCoords();
// Apply the new settings
e->setActive( false );
e->setActive( true );
}
}

View file

@ -111,6 +111,12 @@ namespace GUIEditor
if( e == NULL )
return;
e->setProperty( propName.toUtf8().constData(), propValue.toUtf8().constData() );
// Make sure the changes are applied
bool active = e->getActive();
e->setActive( !active );
e->setActive( active );
}
void CPropBrowserCtrl::setupProperties( const std::string &type, const CInterfaceElement *element )

View file

@ -47,7 +47,7 @@
<property>
<name>line_maxw</name>
<type>int</type>
<default>0</default>
<default>100</default>
</property>
<property>
<name>multi_line_space</name>