From 21e807a07f82f0d3c7e4befbbf91f1a1a8d71874 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Wed, 29 Jun 2016 22:57:28 +0100 Subject: [PATCH] Speculative fix for #891. --- src/wx/timing_panel.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/wx/timing_panel.cc b/src/wx/timing_panel.cc index 7abe9e8f9..e5c2ed785 100644 --- a/src/wx/timing_panel.cc +++ b/src/wx/timing_panel.cc @@ -146,6 +146,9 @@ TimingPanel::TimingPanel (ContentPanel* p, FilmViewer* viewer) t->SetLabelMarkup (out); grid->Add (t, 0, wxALIGN_CENTER_VERTICAL | wxLEFT | wxRIGHT, 6); + /* Completely speculative fix for #891 */ + grid->Layout (); + _position->Changed.connect (boost::bind (&TimingPanel::position_changed, this)); _move_to_start_of_reel->Bind (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&TimingPanel::move_to_start_of_reel_clicked, this)); _full_length->Changed.connect (boost::bind (&TimingPanel::full_length_changed, this)); -- 2.30.2