diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-04-07 12:53:32 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-04-07 12:53:32 +0200 |
| commit | 6636d343b8a1c0d37bf5c6aefccaff64fb3cab84 (patch) | |
| tree | b410c63f643400f523b6fcf9d54351d9f751d9cb /src | |
| parent | 6c9cee14107f7c33787bab5873652677ae18e476 (diff) | |
Work around failure to open maximised on Ubuntu 24.04 (#3010).
Diffstat (limited to 'src')
| -rw-r--r-- | src/tools/dcpomatic.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/tools/dcpomatic.cc b/src/tools/dcpomatic.cc index c603b9bfe..78fce27f2 100644 --- a/src/tools/dcpomatic.cc +++ b/src/tools/dcpomatic.cc @@ -538,6 +538,9 @@ private: if (ev.IsShown() && !_first_shown_called) { _film_editor->first_shown (); _first_shown_called = true; +#ifdef DCPOMATIC_WORKAROUND_MUTTER + signal_manager->when_idle([this]() { Maximize(); }); +#endif } } |
