diff options
| author | Carl Hetherington <cth@carlh.net> | 2026-01-09 01:35:59 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2026-01-09 01:35:59 +0100 |
| commit | 879470a03245d913c467f05794f72ee47e7c9998 (patch) | |
| tree | c3af2ceda391c1a2e34bf2c2a68d25509d4f8f4d | |
| parent | 2e003fbc98f0ef8e95e612ed56d3fc6bc718c608 (diff) | |
Possibly fix disappearing Cancel/Verify buttons.
Before this commit these buttons would need the window to be half a
screen width width before they were seen (at least on Ubuntu 24.04).
| -rw-r--r-- | src/tools/dcpomatic_verifier.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/dcpomatic_verifier.cc b/src/tools/dcpomatic_verifier.cc index 5a82910c0..8a480abe5 100644 --- a/src/tools/dcpomatic_verifier.cc +++ b/src/tools/dcpomatic_verifier.cc @@ -193,7 +193,7 @@ public: actions_sizer->Add(_cancel, 0, wxRIGHT, DCPOMATIC_SIZER_GAP); _verify = new Button(_overall_panel, _("Verify")); actions_sizer->Add(_verify, 0, wxRIGHT, DCPOMATIC_SIZER_GAP); - overall_sizer->Add(actions_sizer, 1, wxLEFT | wxRIGHT | wxALIGN_CENTER, DCPOMATIC_DIALOG_BORDER); + overall_sizer->Add(actions_sizer, 0, wxLEFT | wxRIGHT | wxALIGN_CENTER, DCPOMATIC_DIALOG_BORDER); _progress_panel = new VerifyDCPProgressPanel(_overall_panel); overall_sizer->Add(_progress_panel, 0, wxEXPAND | wxALL, DCPOMATIC_DIALOG_BORDER); |
