summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-07-03 22:39:03 +0200
committerCarl Hetherington <cth@carlh.net>2025-07-03 22:39:03 +0200
commit2360b99255c8c87e568e5318a0fc27d50adf253b (patch)
treeb4bb47d31eda6c73eab4bee7ade8c1646bb9c6bb /src
parented2e01b1fa3db602a3f98312581e6ebac47dac15 (diff)
Hack some window sizes for Fedora (#3055).
Diffstat (limited to 'src')
-rw-r--r--src/tools/dcpomatic_combiner.cc2
-rw-r--r--src/tools/dcpomatic_disk.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/dcpomatic_combiner.cc b/src/tools/dcpomatic_combiner.cc
index 67ca73539..098025ddb 100644
--- a/src/tools/dcpomatic_combiner.cc
+++ b/src/tools/dcpomatic_combiner.cc
@@ -133,7 +133,7 @@ public:
sizer->Add (_combine, 0, wxALL | wxALIGN_RIGHT, DCPOMATIC_DIALOG_BORDER);
overall_panel->SetSizer (sizer);
Fit ();
- SetSize (768, GetSize().GetHeight() + 32);
+ SetSize(768, GetSize().GetHeight() + 96);
_combine->Bind (wxEVT_BUTTON, boost::bind(&DOMFrame::combine, this));
_output->Bind (wxEVT_DIRPICKER_CHANGED, boost::bind(&DOMFrame::setup_sensitivity, this));
diff --git a/src/tools/dcpomatic_disk.cc b/src/tools/dcpomatic_disk.cc
index be527eaab..56b30590f 100644
--- a/src/tools/dcpomatic_disk.cc
+++ b/src/tools/dcpomatic_disk.cc
@@ -174,7 +174,7 @@ public:
_sizer->Add (grid, 1, wxALL | wxEXPAND, DCPOMATIC_DIALOG_BORDER);
overall_panel->SetSizer (_sizer);
Fit ();
- SetSize(768, GetSize().GetHeight() + 32);
+ SetSize(768, GetSize().GetHeight() + 96);
/* XXX: this is a hack, but I expect we'll need logs and I'm not sure if there's
* a better place to put them.