summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-01-08 15:02:24 +0000
committerCarl Hetherington <cth@carlh.net>2016-01-08 15:02:24 +0000
commit88be57c9194bb51f45b9d85ea07d71868d2284c0 (patch)
treebf0b98876d78d2f6082b4388ae1f4b3ac2e2f4f2 /src
parent1d40c94c23881c99f7c39cfd7ca017989c7d2c6a (diff)
Try to make subtitle view resizeable on all platforms (#781).
Diffstat (limited to 'src')
-rw-r--r--src/wx/subtitle_view.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/subtitle_view.cc b/src/wx/subtitle_view.cc
index 632b209ed..f54b19680 100644
--- a/src/wx/subtitle_view.cc
+++ b/src/wx/subtitle_view.cc
@@ -29,7 +29,7 @@ using boost::shared_ptr;
using boost::dynamic_pointer_cast;
SubtitleView::SubtitleView (wxWindow* parent, shared_ptr<Film> film, shared_ptr<SubtitleDecoder> decoder, DCPTime position)
- : wxDialog (parent, wxID_ANY, _("Subtitles"))
+ : wxDialog (parent, wxID_ANY, _("Subtitles"), wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER)
{
_list = new wxListCtrl (this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxLC_REPORT | wxLC_SINGLE_SEL);