diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/timeline_dialog.cc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/wx/timeline_dialog.cc b/src/wx/timeline_dialog.cc index ab2162b39..e4e83850a 100644 --- a/src/wx/timeline_dialog.cc +++ b/src/wx/timeline_dialog.cc @@ -45,6 +45,13 @@ TimelineDialog::TimelineDialog (ContentPanel* cp, shared_ptr<Film> film) sizer->Add (controls, 0, wxALL, 12); sizer->Add (&_timeline, 1, wxEXPAND | wxALL, 12); +#ifdef DCPOMATIC_LINUX + wxSizer* buttons = CreateSeparatedButtonSizer (wxCLOSE); + if (buttons) { + sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder()); + } +#endif + SetSizer (sizer); sizer->Layout (); sizer->SetSizeHints (this); |
