diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-05-27 22:24:18 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-05-27 22:24:18 +0100 |
| commit | f49d66270bff2577d39474a0c1c18a7a1b1f14f6 (patch) | |
| tree | e0e5a6561da5391e51daad271b6266391475df5e /src/wx/timeline.h | |
| parent | bfd9b87675c4d0662e93639b446cb30182769afc (diff) | |
Fix time axis view position.
Diffstat (limited to 'src/wx/timeline.h')
| -rw-r--r-- | src/wx/timeline.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/wx/timeline.h b/src/wx/timeline.h index 348286db8..a786e6a09 100644 --- a/src/wx/timeline.h +++ b/src/wx/timeline.h @@ -27,6 +27,7 @@ class Film; class View; class ContentView; class FilmEditor; +class TimeAxisView; class Timeline : public wxPanel { @@ -46,7 +47,7 @@ public: } int track_height () const { - return 64; + return 48; } double pixels_per_time_unit () const { @@ -72,6 +73,7 @@ private: FilmEditor* _film_editor; boost::weak_ptr<Film> _film; std::list<boost::shared_ptr<View> > _views; + boost::shared_ptr<TimeAxisView> _time_axis_view; int _tracks; double _pixels_per_time_unit; bool _left_down; |
