Fix XML tags.
authorCarl Hetherington <cth@carlh.net>
Mon, 1 Apr 2013 01:28:37 +0000 (02:28 +0100)
committerCarl Hetherington <cth@carlh.net>
Mon, 1 Apr 2013 01:28:37 +0000 (02:28 +0100)
src/lib/film.cc

index a6a53b3fccaaade906785589862cbc8ab4534214..f2c7a654aa348ff1ff9b1fea7bda10523141353e 100644 (file)
@@ -462,10 +462,10 @@ Film::read_metadata ()
                }
        }
 
-       _crop.left = f.number_child<int> ("CropLeft");
-       _crop.right = f.number_child<int> ("CropRight");
-       _crop.top = f.number_child<int> ("CropTop");
-       _crop.bottom = f.number_child<int> ("CropBottom");
+       _crop.left = f.number_child<int> ("LeftCrop");
+       _crop.right = f.number_child<int> ("RightCrop");
+       _crop.top = f.number_child<int> ("TopCrop");
+       _crop.bottom = f.number_child<int> ("BottomCrop");
 
        {
                list<shared_ptr<cxml::Node> > c = f.node_children ("Filter");