diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-09-14 21:52:07 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-09-14 21:52:07 +0100 |
| commit | ddf2e8d432e7a4bbed576d72b28d77c3134cee14 (patch) | |
| tree | 2bfc4087b28d06c367310f155cdbc960b5f2a214 | |
| parent | c49168dc9a125d546c879509d82b21368b2e4d58 (diff) | |
Put player on 2nd monitor for now.
| -rw-r--r-- | src/tools/dcpomatic_player.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/tools/dcpomatic_player.cc b/src/tools/dcpomatic_player.cc index 3ab890a71..c6832772f 100644 --- a/src/tools/dcpomatic_player.cc +++ b/src/tools/dcpomatic_player.cc @@ -507,8 +507,9 @@ private: if (_mode == Config::PLAYER_MODE_DUAL) { _cinema_dialog->Show (); if (wxDisplay::GetCount() > 1) { - this->Move (0, 0); - _cinema_dialog->Move (wxDisplay(0).GetClientArea().GetWidth(), 0); + this->Move (wxDisplay(0).GetClientArea().GetWidth(), 0); + /* (0, 0) doesn't seem to work for some strange reason */ + _cinema_dialog->Move (8, 8); } } } |
