summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-11-23 23:53:12 +0100
committerCarl Hetherington <cth@carlh.net>2025-09-28 19:49:26 +0200
commitf3275bba73347eef03bbe6f7982e8ca25f2aced6 (patch)
tree872667cdb63a4e3372b5cd5235d82c5b868fac3b /src/tools
parenteda4ed548e51ab1c231205ec141dac3dd6be2ac4 (diff)
Save window metrics in the config file (#1575).
Perhaps these should be in a separate GUI file, like how it's done for Films, but I can't really see a big advantage (and there already GUI-only details in there). In this commit we also save the hints dialog size/position and start it a bit larger (#2892).
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/dcpomatic.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tools/dcpomatic.cc b/src/tools/dcpomatic.cc
index 8f8cf3df0..7da0f43f7 100644
--- a/src/tools/dcpomatic.cc
+++ b/src/tools/dcpomatic.cc
@@ -839,6 +839,7 @@ private:
if (Config::instance()->show_hints_before_make_dcp()) {
HintsDialog hints(this, _film, false);
+ hints.show();
if (hints.ShowModal() == wxID_CANCEL) {
return;
}
@@ -939,6 +940,7 @@ private:
if (Config::instance()->show_hints_before_make_dcp()) {
HintsDialog hints(this, _film, false);
+ hints.show();
if (hints.ShowModal() == wxID_CANCEL) {
return;
}
@@ -1120,7 +1122,7 @@ private:
_hints_dialog = new HintsDialog (this, _film, true);
}
- _hints_dialog->Show ();
+ _hints_dialog->show();
}
void tools_encoding_servers ()