about summary refs log tree commit diff
path: root/src/game/editor
diff options
context:
space:
mode:
authorSushiTee <weichel.sascha@gmail.com>2010-07-31 12:58:11 +0200
committeroy <Tom_Adams@web.de>2010-08-08 23:46:23 +0200
commit866f76727b985a1999d059c61049f3bbeaf35557 (patch)
tree04f450053f00429be9417904588037f728e7046f /src/game/editor
parent981b47d0af59238d21d4e93d09daa9def0b0cb76 (diff)
downloadzcatch-866f76727b985a1999d059c61049f3bbeaf35557.tar.gz
zcatch-866f76727b985a1999d059c61049f3bbeaf35557.zip
using PROPTYPE_INT_SCROLL for layer size in editor
Diffstat (limited to 'src/game/editor')
-rw-r--r--src/game/editor/ed_layer_tiles.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/editor/ed_layer_tiles.cpp b/src/game/editor/ed_layer_tiles.cpp
index d093cab2..e7751d09 100644
--- a/src/game/editor/ed_layer_tiles.cpp
+++ b/src/game/editor/ed_layer_tiles.cpp
@@ -292,8 +292,8 @@ int CLayerTiles::RenderProperties(CUIRect *pToolBox)
 	};
 	
 	CProperty aProps[] = {
-		{Localize("Width"), m_Width, PROPTYPE_INT_STEP, 1, 1000000000},
-		{Localize("Height"), m_Height, PROPTYPE_INT_STEP, 1, 1000000000},
+		{Localize("Width"), m_Width, PROPTYPE_INT_SCROLL, 1, 1000000000},
+		{Localize("Height"), m_Height, PROPTYPE_INT_SCROLL, 1, 1000000000},
 		{Localize("Image"), m_Image, PROPTYPE_IMAGE, 0, 0},
 		{0},
 	};