diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-07-27 18:32:55 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-07-27 18:32:55 +0100 |
| commit | 478417f4441c50aaebc3870a5e1867f7c41b4afd (patch) | |
| tree | 72f0b6e519bb91eeb5b4a92106d8abe4aa14a1b8 /src | |
| parent | 84f96ae1f50c27823eae73cebc1992cf5590ee7d (diff) | |
Forward-port gauge stretching fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/job_manager_view.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wx/job_manager_view.cc b/src/wx/job_manager_view.cc index b627edc2f..a95087b02 100644 --- a/src/wx/job_manager_view.cc +++ b/src/wx/job_manager_view.cc @@ -51,6 +51,8 @@ public: ++n; _gauge = new wxGauge (panel, wxID_ANY, 100); + /* This seems to be required to allow the gauge to shrink under OS X */ + _gauge->SetMinSize (wxSize (0, -1)); table->Insert (n, _gauge, 1, wxEXPAND | wxLEFT | wxRIGHT); ++n; |
