From f7dda9c006e0f68277ae96d8f37e9ff14a271cd4 Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Wed, 7 Jun 2023 19:24:43 +0200 Subject: [PATCH] Upgrade CGEditor --- libs/cgeditor | 2 +- src/game_tab/right_panel/editor/EditorCanvas.cpp | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/libs/cgeditor b/libs/cgeditor index 5ceb3ea..7d753ae 160000 --- a/libs/cgeditor +++ b/libs/cgeditor @@ -1 +1 @@ -Subproject commit 5ceb3eafc405859f5e588118158cb9e9dbd00485 +Subproject commit 7d753ae2d82592e09e04e4ecf11df976a2d187fd diff --git a/src/game_tab/right_panel/editor/EditorCanvas.cpp b/src/game_tab/right_panel/editor/EditorCanvas.cpp index 3120177..a651ba5 100644 --- a/src/game_tab/right_panel/editor/EditorCanvas.cpp +++ b/src/game_tab/right_panel/editor/EditorCanvas.cpp @@ -183,13 +183,11 @@ void EditorCanvas::MouseEvent(wxMouseEvent &event) { void EditorCanvas::SetMoves(HalfMove *moves, HalfMove *current) { CGEditor::status.Moves = moves; CGEditor::status.CurrentMove = current; - Refresh(); // Focus on current move: if(current!=nullptr){ - Update(); // Wait for preview call to Refresh() to finish (otherwise heisenbugs) CGEditor::FocusOnMove(current); - Refresh(); } + Refresh(); } void EditorCanvas::ApplyPreferences(){