From 866f76727b985a1999d059c61049f3bbeaf35557 Mon Sep 17 00:00:00 2001 From: SushiTee Date: Sat, 31 Jul 2010 12:58:11 +0200 Subject: [PATCH] using PROPTYPE_INT_SCROLL for layer size in editor --- src/game/editor/ed_layer_tiles.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/game/editor/ed_layer_tiles.cpp b/src/game/editor/ed_layer_tiles.cpp index d093cab24..e7751d099 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}, };