using PROPTYPE_INT_SCROLL for layer size in editor

This commit is contained in:
SushiTee 2010-07-31 12:58:11 +02:00 committed by oy
parent 981b47d0af
commit 866f76727b

View file

@ -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},
};