Make sure to apply the changes, when changing properties.

--HG--
branch : gsoc2012-gui-editor
hg/feature/sse2
dfighter1985 12 years ago
parent 057960d056
commit 9042de4ab2

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

@ -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 );
}
}

@ -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 )

@ -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>

Loading…
Cancel
Save