Replaced float with AZ::u32

Signed-off-by: lsemp3d <58790905+lsemp3d@users.noreply.github.com>
This commit is contained in:
lsemp3d
2021-11-15 14:46:38 -08:00
parent cffd93642e
commit 35b4f6a538
2 changed files with 2 additions and 2 deletions
@@ -119,7 +119,7 @@ namespace GraphCanvas
m_nodePalette->setProperty("HasNoWindowDecorations", true);
m_nodePalette->SetupNodePalette(config);
if (m_userNodePaletteWidth > 0.f)
if (m_userNodePaletteWidth > 0)
{
m_nodePalette->setFixedWidth(m_userNodePaletteWidth);
}
@@ -80,7 +80,7 @@ namespace GraphCanvas
bool m_finalized;
bool m_isToolBarMenu;
float m_userNodePaletteWidth = 300.f;
AZ::u32 m_userNodePaletteWidth = 300;
EditorId m_editorId;