diff options
Diffstat (limited to 'src/game_tab/left_panel/GameTabLeftPanel.cpp')
| -rw-r--r-- | src/game_tab/left_panel/GameTabLeftPanel.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/game_tab/left_panel/GameTabLeftPanel.cpp b/src/game_tab/left_panel/GameTabLeftPanel.cpp index 8fba2c1..62a4c95 100644 --- a/src/game_tab/left_panel/GameTabLeftPanel.cpp +++ b/src/game_tab/left_panel/GameTabLeftPanel.cpp @@ -5,10 +5,8 @@ GameTabLeftPanel::GameTabLeftPanel(wxFrame *parent, std::shared_ptr<Game> game) : TabGameLeftPanel(parent), game(game), repeat(false), is_engine_on(false) { // Configure toolbar (note that toolbar events are processed into the GameTab class) - game_toolbar->AddTool(0, wxT("Save As"), - wxArtProvider::GetBitmap(wxART_FILE_SAVE, wxART_TOOLBAR)); - game_toolbar->AddTool(1, wxT("Duplicate Game"), - wxArtProvider::GetBitmap(wxART_COPY, wxART_TOOLBAR)); + game_toolbar->AddTool(0, wxT("Save As"),LoadPNG("ui_save_floppy_disk")); + game_toolbar->AddTool(1, wxT("Duplicate Game"),LoadPNG("ui_copy")); // Add board board_canvas = new BoardCanvas((wxFrame *)this); |
