1
0
mirror of https://github.com/aseprite/aseprite.git synced 2025-04-04 19:20:27 +00:00

Fix NewCustomBrushItem construction

This commit is contained in:
David Capello 2015-12-15 19:29:12 -03:00
parent 3024bc7604
commit fd8e8686d5

@ -277,7 +277,7 @@ void BrushPopup::regenerate(const gfx::Rect& box)
m_customBrushes->addItem(new BrushOptionsItem(this, m_delegate, slot)); m_customBrushes->addItem(new BrushOptionsItem(this, m_delegate, slot));
} }
m_customBrushes->addItem(new NewCustomBrushItem, 3, 1); m_customBrushes->addItem(new NewCustomBrushItem(m_delegate), 3, 1);
m_customBrushes->setExpansive(true); m_customBrushes->setExpansive(true);
m_box.addChild(m_customBrushes); m_box.addChild(m_customBrushes);