From 5607057ac33ce3b6933697134b20d7ef0b1a43be Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Sun, 1 Jan 2023 12:15:08 +0100 Subject: Debug and clean the game tab code --- src/game_tab/left_panel/board/BoardCanvas.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/game_tab/left_panel/board/BoardCanvas.cpp') diff --git a/src/game_tab/left_panel/board/BoardCanvas.cpp b/src/game_tab/left_panel/board/BoardCanvas.cpp index 386d593..7f2c38d 100644 --- a/src/game_tab/left_panel/board/BoardCanvas.cpp +++ b/src/game_tab/left_panel/board/BoardCanvas.cpp @@ -19,7 +19,7 @@ BoardCanvas::BoardCanvas(wxFrame *parent) adata.duration=200; adata.duration_fast=80; adata.fps=30; - + // Let GameTableLeftPanel process keyboard events: Bind(wxEVT_KEY_DOWN, [p=this](wxKeyEvent &e){e.ResumePropagation(1);e.Skip();}); Bind(wxEVT_KEY_UP, [p=this](wxKeyEvent &e){e.ResumePropagation(1);e.Skip();}); } @@ -385,6 +385,7 @@ void BoardCanvas::MouseEvent(wxMouseEvent &event) { } } } + // Let GameTableLeftPanel process mouse wheel events: if (event.GetWheelRotation() != 0) { event.ResumePropagation(1);event.Skip(); } -- cgit v1.2.3