[tiled] r685 - in trunk: . src/tiled/core src/tiled/mapeditor/util src/tiled/mapeditor/widget
svn@biggeruniverse.com
svn at biggeruniverse.com
Sun Jun 25 17:07:12 PDT 2006
Author: bjorn
Date: 2006-06-25 19:07:11 -0500 (Sun, 25 Jun 2006)
New Revision: 685
Modified:
trunk/CHANGES
trunk/src/tiled/core/MapLayer.java
trunk/src/tiled/mapeditor/util/TileRegionSelectionEvent.java
trunk/src/tiled/mapeditor/widget/TileButton.java
Log:
* Fixed width of tile button changing between selecting a tile and no tile
* Fixed layer properties of duplicated layers for real now (to still contain the contents of the original layer)
Modified: trunk/CHANGES
===================================================================
--- trunk/CHANGES 2006-06-25 14:33:41 UTC (rev 684)
+++ trunk/CHANGES 2006-06-26 00:07:11 UTC (rev 685)
@@ -1,9 +1,12 @@
trunk
* Added support for tile instance properties (by Christian Henz)
-* Fixed selection of TMX as default map format also when plugins are loaded
+* Added ability to create stamp brushes from the tile palette
+* Embedded the tile palette
+* Fixed selection of map format by extention also when plugins are loaded
* Fixed active marquee not being reset on loading a map
* Fixed layer duplicates to not share layer properties with the original
+* Fixed width of tile button changing between selecting a tile and no tile
0.6.0 - June 23rd, 2006
Modified: trunk/src/tiled/core/MapLayer.java
===================================================================
--- trunk/src/tiled/core/MapLayer.java 2006-06-25 14:33:41 UTC (rev 684)
+++ trunk/src/tiled/core/MapLayer.java 2006-06-26 00:07:11 UTC (rev 685)
@@ -271,7 +271,7 @@
// Create a new bounds object
clone.bounds = new Rectangle(bounds);
- clone.properties = new Properties(getProperties());
+ clone.properties = (Properties) properties.clone();
return clone;
}
Modified: trunk/src/tiled/mapeditor/util/TileRegionSelectionEvent.java
===================================================================
--- trunk/src/tiled/mapeditor/util/TileRegionSelectionEvent.java 2006-06-25 14:33:41 UTC (rev 684)
+++ trunk/src/tiled/mapeditor/util/TileRegionSelectionEvent.java 2006-06-26 00:07:11 UTC (rev 685)
@@ -19,7 +19,7 @@
/**
* An event that describes the selection of a tile region.
*
- * @version $Id: TileSelectionEvent.java 680 2006-06-24 00:50:03Z bjorn $
+ * @version $Id$
*/
public class TileRegionSelectionEvent extends EventObject
{
Property changes on: trunk/src/tiled/mapeditor/util/TileRegionSelectionEvent.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: trunk/src/tiled/mapeditor/widget/TileButton.java
===================================================================
--- trunk/src/tiled/mapeditor/widget/TileButton.java 2006-06-25 14:33:41 UTC (rev 684)
+++ trunk/src/tiled/mapeditor/widget/TileButton.java 2006-06-26 00:07:11 UTC (rev 685)
@@ -26,7 +26,7 @@
*/
public class TileButton extends JButton
{
- private static final int ICON_SIZE = 24;
+ private static final int ICON_SIZE = 22;
private static final Icon DEFAULT_ICON = Resources.getIcon("empty.png");
public TileButton() {
More information about the tiled-commit
mailing list