summaryrefslogtreecommitdiff
path: root/src/wx/text_panel.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-12-08 01:11:35 +0000
committerCarl Hetherington <cth@carlh.net>2018-12-08 01:11:35 +0000
commit8b2a3f31b6b4238d8534549f495e7276174ddfba (patch)
treeb8c55a3ff05f488044d98871da46a0e4f52f306d /src/wx/text_panel.cc
parent9c1bb2e5ca7c80c4e26b1b2e41159aa171360a94 (diff)
Support buttons.
Diffstat (limited to 'src/wx/text_panel.cc')
-rw-r--r--src/wx/text_panel.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/wx/text_panel.cc b/src/wx/text_panel.cc
index 31881806f..ed49d8484 100644
--- a/src/wx/text_panel.cc
+++ b/src/wx/text_panel.cc
@@ -28,6 +28,7 @@
#include "subtitle_appearance_dialog.h"
#include "static_text.h"
#include "check_box.h"
+#include "dcpomatic_button.h"
#include "lib/ffmpeg_content.h"
#include "lib/string_text_file_content.h"
#include "lib/ffmpeg_subtitle_stream.h"
@@ -104,9 +105,9 @@ TextPanel::TextPanel (ContentPanel* p, TextType t)
_stream_label = create_label (this, _("Stream"), true);
_stream = new wxChoice (this, wxID_ANY);
- _text_view_button = new wxButton (this, wxID_ANY, _("View..."));
- _fonts_dialog_button = new wxButton (this, wxID_ANY, _("Fonts..."));
- _appearance_dialog_button = new wxButton (this, wxID_ANY, _("Appearance..."));
+ _text_view_button = new Button (this, _("View..."));
+ _fonts_dialog_button = new Button (this, _("Fonts..."));
+ _appearance_dialog_button = new Button (this, _("Appearance..."));
_x_offset->SetRange (-100, 100);
_y_offset->SetRange (-100, 100);