summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-02-12 23:05:24 +0000
committerCarl Hetherington <cth@carlh.net>2019-02-12 23:05:24 +0000
commit53a0e90c6bfa97d00dcec950e6109586c8676401 (patch)
tree16505a593e5caee88d4f7b0c32efadb7080df7f2
parent2eaeebc72e18fb54104b3fd9e4d7139962b27dfb (diff)
Stop butler getting full in 3D projects with only 2D content (#1469).
-rw-r--r--src/wx/film_viewer.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wx/film_viewer.cc b/src/wx/film_viewer.cc
index fee5605da..b5e60f60e 100644
--- a/src/wx/film_viewer.cc
+++ b/src/wx/film_viewer.cc
@@ -229,7 +229,8 @@ FilmViewer::get ()
} while (
_player_video.first &&
_film->three_d() &&
- (_eyes != _player_video.first->eyes())
+ _eyes != _player_video.first->eyes() &&
+ _player_video.first->eyes() != EYES_BOTH
);
_butler->rethrow ();