diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-05-30 21:19:09 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-05-30 21:19:09 +0100 |
| commit | d2ee8239585be648ac63e560cb9cd363352ff11c (patch) | |
| tree | c655cada4274f4f9cc9a2f9d917dcff0f6bf31d6 | |
| parent | e399d4610d9e177aa1f0cd149f81b4394e6febaf (diff) | |
OS X preference-sizing tweaks.v2.13.25
| -rw-r--r-- | src/wx/full_config_dialog.cc | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/src/wx/full_config_dialog.cc b/src/wx/full_config_dialog.cc index 85711aa31..c371239b7 100644 --- a/src/wx/full_config_dialog.cc +++ b/src/wx/full_config_dialog.cc @@ -689,12 +689,7 @@ class EmailPage : public StandardPage { public: EmailPage (wxSize panel_size, int border) -#ifdef DCPOMATIC_OSX - /* We have to force both width and height of this one */ - : StandardPage (wxSize (480, 128), border) -#else : StandardPage (panel_size, border) -#endif {} wxString GetName () const @@ -785,7 +780,7 @@ public: KDMEmailPage (wxSize panel_size, int border) #ifdef DCPOMATIC_OSX /* We have to force both width and height of this one */ - : StandardPage (wxSize (480, 128), border) + : StandardPage (wxSize (panel_size.GetWidth(), 128), border) #else : StandardPage (panel_size, border) #endif @@ -905,7 +900,7 @@ public: NotificationsPage (wxSize panel_size, int border) #ifdef DCPOMATIC_OSX /* We have to force both width and height of this one */ - : StandardPage (wxSize (480, 128), border) + : StandardPage (wxSize (panel_size.GetWidth(), 128), border) #else : StandardPage (panel_size, border) #endif @@ -1076,7 +1071,7 @@ public: CoverSheetPage (wxSize panel_size, int border) #ifdef DCPOMATIC_OSX /* We have to force both width and height of this one */ - : StandardPage (wxSize (480, 128), border) + : StandardPage (wxSize (panel_size.GetWidth(), 128), border) #else : StandardPage (panel_size, border) #endif @@ -1385,7 +1380,7 @@ create_full_config_dialog () the containing window doesn't shrink too much when we select those panels. This is obviously an unpleasant hack. */ - wxSize ps = wxSize (520, -1); + wxSize ps = wxSize (600, -1); int const border = 16; #else wxSize ps = wxSize (-1, -1); |
