From: <aki...@us...> - 2014-03-01 07:10:14
|
Revision: 9671 http://sourceforge.net/p/gridarta/code/9671 Author: akirschbaum Date: 2014-03-01 07:10:09 +0000 (Sat, 01 Mar 2014) Log Message: ----------- Properly update pickmap view after map modifications. Reload pickmaps from disk when the pickmap folder is changed. Modified Paths: -------------- trunk/src/atrinik/ChangeLog trunk/src/crossfire/ChangeLog trunk/src/daimonin/ChangeLog trunk/src/gridarta/src/main/java/net/sf/gridarta/gui/panel/pickmapchooser/PickmapChooserModel.java Modified: trunk/src/atrinik/ChangeLog =================================================================== --- trunk/src/atrinik/ChangeLog 2014-02-28 20:55:32 UTC (rev 9670) +++ trunk/src/atrinik/ChangeLog 2014-03-01 07:10:09 UTC (rev 9671) @@ -1,3 +1,8 @@ +2014-03-01 Andreas Kirschbaum + + * Properly update pickmap view after map modifications. Reload + pickmaps from disk when the pickmap folder is changed. + 2014-02-23 Andreas Kirschbaum * Add missing library which broke the settings dialog. Modified: trunk/src/crossfire/ChangeLog =================================================================== --- trunk/src/crossfire/ChangeLog 2014-02-28 20:55:32 UTC (rev 9670) +++ trunk/src/crossfire/ChangeLog 2014-03-01 07:10:09 UTC (rev 9671) @@ -1,3 +1,8 @@ +2014-03-01 Andreas Kirschbaum + + * Properly update pickmap view after map modifications. Reload + pickmaps from disk when the pickmap folder is changed. + 2014-02-23 Andreas Kirschbaum * Add missing library which broke the settings dialog. Modified: trunk/src/daimonin/ChangeLog =================================================================== --- trunk/src/daimonin/ChangeLog 2014-02-28 20:55:32 UTC (rev 9670) +++ trunk/src/daimonin/ChangeLog 2014-03-01 07:10:09 UTC (rev 9671) @@ -1,3 +1,8 @@ +2014-03-01 Andreas Kirschbaum + + * Properly update pickmap view after map modifications. Reload + pickmaps from disk when the pickmap folder is changed. + 2014-02-23 Andreas Kirschbaum * Add missing library which broke the settings dialog. Modified: trunk/src/gridarta/src/main/java/net/sf/gridarta/gui/panel/pickmapchooser/PickmapChooserModel.java =================================================================== --- trunk/src/gridarta/src/main/java/net/sf/gridarta/gui/panel/pickmapchooser/PickmapChooserModel.java 2014-02-28 20:55:32 UTC (rev 9670) +++ trunk/src/gridarta/src/main/java/net/sf/gridarta/gui/panel/pickmapchooser/PickmapChooserModel.java 2014-03-01 07:10:09 UTC (rev 9671) @@ -169,6 +169,7 @@ public void clear() { for (final PickmapState<G, A, R> pickmapState : pickmapStates) { removeMapModelListener(pickmapState.getPickmap()); + pickmapState.freePickmap(); } pickmapStates.clear(); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |