# HG changeset patch # User prock@33b003aa-7bff-0310-803a-e67f0ece8222 # Date 1256139084 0 # Node ID c3443aa7be10bcd6312577670e8012953ff39265 # Parent 714673208050bfafff36cd9af233286142993edd Forgot to comment a few lines which caused the Camera Editor to not be shown. diff -r 714673208050 -r c3443aa7be10 clients/editor/plugins/CameraEdit.py --- a/clients/editor/plugins/CameraEdit.py Wed Oct 21 15:19:59 2009 +0000 +++ b/clients/editor/plugins/CameraEdit.py Wed Oct 21 15:31:24 2009 +0000 @@ -199,8 +199,8 @@ """ Create the basic gui container """ self._container = pychan.loadXML('gui/cameradialog.xml') - self._container.findChild(name="mapLabel").hide() - self._container.findChild(name="mapBox").hide() + #self._container.findChild(name="mapLabel").hide() + #self._container.findChild(name="mapBox").hide() self._ok_button = self._container.findChild(name="okButton") self._cancel_button = self._container.findChild(name="cancelButton") @@ -219,4 +219,7 @@ let the window appear at the center of the screen. (new default position: left, beneath the tools window) """ - self._container.position = (50, 200) \ No newline at end of file + self._container.position = (50, 200) + + +