diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-01-29 22:57:19 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-01-29 22:57:19 +0000 |
| commit | 218ffe2c5f92ed19ec488cda5012b64fcabd5e3f (patch) | |
| tree | a0604653c3f2d68f55a8a457e6be896a3e75f856 /src/wx/timeline_view.cc | |
| parent | 13aceac46acc966ffddcbc08982e8090415625f3 (diff) | |
Fix indistinct selection of small objects on the timeline.
Diffstat (limited to 'src/wx/timeline_view.cc')
| -rw-r--r-- | src/wx/timeline_view.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/timeline_view.cc b/src/wx/timeline_view.cc index a1c5fb7ec..fee1921ed 100644 --- a/src/wx/timeline_view.cc +++ b/src/wx/timeline_view.cc @@ -39,8 +39,8 @@ TimelineView::paint (wxGraphicsContext* g) void TimelineView::force_redraw () { - _timeline.force_redraw (_last_paint_bbox); - _timeline.force_redraw (bbox ()); + _timeline.force_redraw (_last_paint_bbox.extended (4)); + _timeline.force_redraw (bbox().extended (4)); } int |
