aboutsummaryrefslogtreecommitdiff
path: root/src/game_tab/left_panel/GameTabLeftPanel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game_tab/left_panel/GameTabLeftPanel.cpp')
-rw-r--r--src/game_tab/left_panel/GameTabLeftPanel.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/game_tab/left_panel/GameTabLeftPanel.cpp b/src/game_tab/left_panel/GameTabLeftPanel.cpp
index 25ded2c..5b8162c 100644
--- a/src/game_tab/left_panel/GameTabLeftPanel.cpp
+++ b/src/game_tab/left_panel/GameTabLeftPanel.cpp
@@ -107,6 +107,15 @@ void GameTabLeftPanel::Notify(bool skip_animation) {
gs.black=game->GetTag("Black");
gs.mat_black=game->IsCheckmate(true);
gs.mat_white=game->IsCheckmate(false);
+ if(m){
+ // There should be a valid src_hl or dst_hl ortherwise it explode:
+ std::string src_hl, dst_hl;
+ m->GetAbsoluteMove(src_hl,dst_hl);
+ if(src_hl.size()>0){ // Just in case
+ gs.squares_hl.push_back(src_hl+"d");
+ gs.squares_hl.push_back(dst_hl+"a");
+ }
+ }
if(skip_animation || !animate){
board_canvas->SetupBoard(gs);
}