aboutsummaryrefslogtreecommitdiff
path: root/src/game_tab
diff options
context:
space:
mode:
Diffstat (limited to 'src/game_tab')
-rw-r--r--src/game_tab/left_panel/GameTabLeftPanel.cpp6
-rw-r--r--src/game_tab/right_panel/editor/EditorCanvas.cpp2
2 files changed, 4 insertions, 4 deletions
diff --git a/src/game_tab/left_panel/GameTabLeftPanel.cpp b/src/game_tab/left_panel/GameTabLeftPanel.cpp
index e51febc..8fba2c1 100644
--- a/src/game_tab/left_panel/GameTabLeftPanel.cpp
+++ b/src/game_tab/left_panel/GameTabLeftPanel.cpp
@@ -15,9 +15,9 @@ GameTabLeftPanel::GameTabLeftPanel(wxFrame *parent, std::shared_ptr<Game> game)
main_sizer->Insert(1, board_canvas, 1, wxEXPAND);
// Configure buttons
- swap_button->SetBitmapLabel(LoadPNG("swap"));
- zoomin_button->SetBitmapLabel(LoadPNG("zoomin"));
- zoomout_button->SetBitmapLabel(LoadPNG("zoomout"));
+ swap_button->SetBitmapLabel(LoadPNG("ui_coins_swap"));
+ zoomin_button->SetBitmapLabel(LoadPNG("ui_zoom_in"));
+ zoomout_button->SetBitmapLabel(LoadPNG("ui_zoom_out"));
// Configure FEN field
fen_text_field->SetFont(wxFont(*wxNORMAL_FONT).Bold().Larger());
diff --git a/src/game_tab/right_panel/editor/EditorCanvas.cpp b/src/game_tab/right_panel/editor/EditorCanvas.cpp
index 1df39b9..03fec96 100644
--- a/src/game_tab/right_panel/editor/EditorCanvas.cpp
+++ b/src/game_tab/right_panel/editor/EditorCanvas.cpp
@@ -2,7 +2,7 @@
EditorCanvas::EditorCanvas(wxFrame *parent, std::shared_ptr<Game> game)
: wxPanel(parent), game(game) {
- hide_icon = LoadPNG("hide", wxSize(CGEditor::status.MoveIconWidth,
+ hide_icon = LoadPNG("ui_eye_close", wxSize(CGEditor::status.MoveIconWidth,
CGEditor::status.MoveIconWidth));
t.ResizePieces(CGEditor::status.MoveIconWidth);