From dd59bb2b453c501b8596fc4cc6f55e4619f42281 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matt=C3=A9o=20Delabre?= Date: Thu, 21 Apr 2016 00:37:53 +0200 Subject: [PATCH] =?UTF-8?q?R=C3=A9ordonne=20la=20liste=20des=20objets=20pl?= =?UTF-8?q?a=C3=A7ables?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/gui/toolbar.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/gui/toolbar.cpp b/src/gui/toolbar.cpp index 01729dc..a459135 100644 --- a/src/gui/toolbar.cpp +++ b/src/gui/toolbar.cpp @@ -100,10 +100,9 @@ Toolbar::Toolbar(Editor& editor) : editor(editor) { creators_table = sfg::Table::Create(); creators_table_pos_x = creators_table_pos_y = 0; - addCreator("player", std::bind(&Toolbar::createPlayer, this)); - addCreator("block", std::bind(&Toolbar::createBlock, this)); addCreator("movable_block", std::bind(&Toolbar::createMovableBlock, this)); + addCreator("player", std::bind(&Toolbar::createPlayer, this)); addCreator("switch_block", std::bind(&Toolbar::createSwitchBlock, this)); addCreator("finish_block", std::bind(&Toolbar::createFinishBlock, this)); addCreator("kill_block", std::bind(&Toolbar::createKillBlock, this));