summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/wx/content_timeline.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/content_timeline.cc b/src/wx/content_timeline.cc
index a595577d8..ed578c1ba 100644
--- a/src/wx/content_timeline.cc
+++ b/src/wx/content_timeline.cc
@@ -100,7 +100,7 @@ ContentTimeline::ContentTimeline(wxWindow* parent, ContentPanel* cp, shared_ptr<
sizer->Add(_main_canvas, 1, wxEXPAND);
SetSizer(sizer);
- _labels_canvas->Bind(wxEVT_PAINT, boost::bind(&ContentTimeline::paint_labels, this));
+ _labels_canvas->Bind(wxEVT_PAINT, boost::bind(&ContentTimeline::paint_labels, this));
_main_canvas->Bind(wxEVT_PAINT, boost::bind(&ContentTimeline::paint_main, this));
_main_canvas->Bind(wxEVT_LEFT_DOWN, boost::bind(&ContentTimeline::left_down, this, _1));
_main_canvas->Bind(wxEVT_LEFT_DCLICK,boost::bind(&ContentTimeline::left_down, this, _1));