From: <aki...@us...> - 2008-08-13 23:03:45
|
Revision: 4827 http://gridarta.svn.sourceforge.net/gridarta/?rev=4827&view=rev Author: akirschbaum Date: 2008-08-13 23:03:50 +0000 (Wed, 13 Aug 2008) Log Message: ----------- Make "Scripts" tab in game object attributes panel work again. Modified Paths: -------------- trunk/crossfire/ChangeLog trunk/daimonin/ChangeLog trunk/src/app/net/sf/gridarta/gui/gameobjectattributespanel/ScriptTab.java Modified: trunk/crossfire/ChangeLog =================================================================== --- trunk/crossfire/ChangeLog 2008-08-12 20:24:04 UTC (rev 4826) +++ trunk/crossfire/ChangeLog 2008-08-13 23:03:50 UTC (rev 4827) @@ -1,3 +1,7 @@ +2008-08-14 Andreas Kirschbaum + + * Make "Scripts" tab in game object attributes panel work again. + 2008-08-11 Andreas Kirschbaum * Fix crash due to reverted pickmaps. Modified: trunk/daimonin/ChangeLog =================================================================== --- trunk/daimonin/ChangeLog 2008-08-12 20:24:04 UTC (rev 4826) +++ trunk/daimonin/ChangeLog 2008-08-13 23:03:50 UTC (rev 4827) @@ -1,3 +1,7 @@ +2008-08-14 Andreas Kirschbaum + + * Make "Scripts" tab in game object attributes panel work again. + 2008-08-11 Andreas Kirschbaum * Fix crash due to reverted pickmaps. Modified: trunk/src/app/net/sf/gridarta/gui/gameobjectattributespanel/ScriptTab.java =================================================================== --- trunk/src/app/net/sf/gridarta/gui/gameobjectattributespanel/ScriptTab.java 2008-08-12 20:24:04 UTC (rev 4826) +++ trunk/src/app/net/sf/gridarta/gui/gameobjectattributespanel/ScriptTab.java 2008-08-13 23:03:50 UTC (rev 4827) @@ -120,6 +120,7 @@ /** {@inheritDoc} */ @Override protected void refresh(@Nullable final G gameObject) { + selectedGameObject = gameObject; if (gameObject == null || !gameObject.isScripted()) { setTabColor(TAB_COLOR_DEFAULT); if (eventList.getModel() != null && eventList.getModel().getSize() > 0) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |