summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-05-06 23:26:00 +0100
committerCarl Hetherington <cth@carlh.net>2019-05-06 23:26:00 +0100
commit26e41e2e21b1f9f8741ebf058090dd5c156f1c31 (patch)
treefd812d48a5ac67dc35be47f42867c935bf52e476
parentaa31529ad8ee32f1fb53d442337cebed9cefc1c0 (diff)
Remove 1024x1024 hack.
-rw-r--r--src/wx/film_viewer.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/wx/film_viewer.cc b/src/wx/film_viewer.cc
index 4fbfa0e78..1a311349a 100644
--- a/src/wx/film_viewer.cc
+++ b/src/wx/film_viewer.cc
@@ -471,9 +471,6 @@ FilmViewer::calculate_sizes ()
_out_size.width &= ~3;
_out_size.height &= ~3;
- _out_size.width = 1024;
- _out_size.height = 1024;
-
_player->set_video_container_size (_out_size);
}