Index: video.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/video/video.module,v
retrieving revision 1.12
diff -u -r1.12 video.module
--- video.module	11 Sep 2005 20:13:59 -0000	1.12
+++ video.module	11 Sep 2005 20:42:22 -0000
@@ -746,7 +746,8 @@
  *   string of content to display
  */
 function theme_video_play_quicktime(&$node) {
-  $output = '<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="'.$node->videox.'" height="'.$node->videoy.'" scale="tofit" codebase="http://www.apple.com/qtactivex/qtplugin.cab">          
+  $height = $node->videoy + 16; //Increase the height to accommodate the player controls on the bottom.
+  $output = '<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="'.$node->videox.'" height="'.$height.'" scale="tofit" codebase="http://www.apple.com/qtactivex/qtplugin.cab">          
                 <param name="SRC" value="'.$node->vidfile.'" />
                 <param name="AUTOPLAY" value="true" />
                 <param name="KIOSKMODE" value="false" />

