summaryrefslogtreecommitdiff
path: root/src/tools/servomatic_gui.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-09-18 02:21:31 +0100
committerCarl Hetherington <cth@carlh.net>2012-09-18 02:21:31 +0100
commitb589fc45d307b78fd68a8d3a816a656d1dcd41cd (patch)
tree8fc7ce50f6b1a40dfb45463c58fb160637dc1bd1 /src/tools/servomatic_gui.cc
parent3c1b239453936128d1711ffa063ad4e1617b3e40 (diff)
Tweaks.
Diffstat (limited to 'src/tools/servomatic_gui.cc')
-rw-r--r--src/tools/servomatic_gui.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/servomatic_gui.cc b/src/tools/servomatic_gui.cc
index 1d95f498a..a151658f5 100644
--- a/src/tools/servomatic_gui.cc
+++ b/src/tools/servomatic_gui.cc
@@ -57,13 +57,13 @@ class StatusDialog : public wxDialog
{
public:
StatusDialog ()
- : wxDialog (0, wxID_ANY, _("DVD-o-matic encode server"), wxDefaultPosition, wxSize (600, 40), wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER)
+ : wxDialog (0, wxID_ANY, _("DVD-o-matic encode server"), wxDefaultPosition, wxSize (600, 80), wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER)
, _timer (this, ID_timer)
{
_sizer = new wxFlexGridSizer (1, 6, 6);
_sizer->AddGrowableCol (0, 1);
- _text = new wxTextCtrl (this, wxID_ANY);
+ _text = new wxTextCtrl (this, wxID_ANY, _(""), wxDefaultPosition, wxDefaultSize, wxTE_READONLY);
_sizer->Add (_text, 1, wxEXPAND);
SetSizer (_sizer);