From 8c57c9613b6d67ce4ae6f301ec0667d94cb7b0c5 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 5 Oct 2023 01:17:16 +0200 Subject: [PATCH] Fix flickering timeline drags on Windows (#2625). --- src/wx/timeline.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/wx/timeline.cc b/src/wx/timeline.cc index 95e48f562..dbc9f4ee0 100644 --- a/src/wx/timeline.cc +++ b/src/wx/timeline.cc @@ -175,6 +175,7 @@ void Timeline::paint_main () { wxPaintDC dc (_main_canvas); + dc.Clear(); auto film = _film.lock(); if (film->content().empty()) { -- 2.30.2