summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-12-23 01:58:26 +0100
committerCarl Hetherington <cth@carlh.net>2025-12-23 01:58:26 +0100
commitc9742fc2ecffeca8a7283684ed89a8d405a52a09 (patch)
tree05d2711b2476ebebcf00de6529c003942873210d /src
parentf8e05b02f3c9387022af9005de5f7e94586d122e (diff)
Fix strange redraw when dragging content views in the timeline.
Diffstat (limited to 'src')
-rw-r--r--src/wx/timeline_content_view.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/timeline_content_view.cc b/src/wx/timeline_content_view.cc
index 69a675c42..60fa09f00 100644
--- a/src/wx/timeline_content_view.cc
+++ b/src/wx/timeline_content_view.cc
@@ -42,7 +42,7 @@ TimelineContentView::TimelineContentView(ContentTimeline& tl, shared_ptr<Content
: ContentTimelineView(tl)
, _content (c)
{
- _content_connection = c->Change.connect (bind (&TimelineContentView::content_change, this, _1, _3));
+ _content_connection = c->Change.connect(bind(&TimelineContentView::content_change, this, _1, _2));
}