summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-06-21 01:16:21 +0100
committerCarl Hetherington <cth@carlh.net>2015-06-21 01:17:41 +0100
commit5016423c2514d6f282058894f91edfeb9cad3261 (patch)
tree5d8b5c3098a97e770a7c4bdb3fb6f8793409ea8b /src
parente60bb3e51bd1508b149e6b8f6608f09b5196ae26 (diff)
Remove wxST_ELLIPSIZE_END from job status.
This appears to stop multi-line text fields working on OS X, which caused #615.
Diffstat (limited to 'src')
-rw-r--r--src/wx/job_manager_view.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/job_manager_view.cc b/src/wx/job_manager_view.cc
index 24cacf6b0..729dbc3ad 100644
--- a/src/wx/job_manager_view.cc
+++ b/src/wx/job_manager_view.cc
@@ -51,7 +51,7 @@ public:
/* This seems to be required to allow the gauge to shrink under OS X */
_gauge->SetMinSize (wxSize (0, -1));
gauge_message->Add (_gauge, 0, wxEXPAND | wxLEFT | wxRIGHT);
- _message = new wxStaticText (panel, wxID_ANY, wxT (" \n "), wxDefaultPosition, wxDefaultSize, wxST_ELLIPSIZE_END);
+ _message = new wxStaticText (panel, wxID_ANY, wxT (" \n "));
gauge_message->Add (_message, 1, wxEXPAND | wxALIGN_CENTER_VERTICAL | wxALL, 6);
table->Insert (n, gauge_message, 1, wxEXPAND | wxLEFT | wxRIGHT);
++n;