[ease] Hide the overflow of slide <div> tags in HTML export.



commit a0aab3adf8824f70e2b8b6b6013f49ce4674e810
Author: Nate Stedman <natesm gmail com>
Date:   Wed May 19 04:54:09 2010 -0400

    Hide the overflow of slide <div> tags in HTML export.

 src/libease/Document.vala |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/libease/Document.vala b/src/libease/Document.vala
index 5de2fef..f89519e 100644
--- a/src/libease/Document.vala
+++ b/src/libease/Document.vala
@@ -242,7 +242,7 @@ public class Ease.Document : GLib.Object
 		// make the header
 		html += "<head>\n<title>Presentation</title>\n";
 		html += "<style>\n.slide {\nwidth:" + width.to_string() +
-		        "px;\nheight:" + height.to_string() +
+		        "px;\noverflow:hidden;height:" + height.to_string() +
 		        "px; position: relative;margin: 20px auto 20px auto}\n" + 
 		        "html { padding: 0px; margin: 0px; background-color:" +
 		        "black;}\n</style>\n</head>\n";



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]