1 parent e77237b commit 5b4ba2bCopy full SHA for 5b4ba2b
1 file changed
SimpleImageIO/FlipBook.cs
@@ -214,14 +214,16 @@ public static string HeaderScript
214
/// <summary>
215
/// Syntactic sugar to create a new object of this class. Makes the fluent API more readable.
216
/// </summary>
217
- public static FlipBook New => new FlipBook();
+ public static FlipBook New => new();
218
219
220
/// Initializes a new flip book with the given width and height in HTML pixels
221
222
- public FlipBook(int width = 900, int height = 800) {
+ public FlipBook(int width = 660, int height = 480) {
223
htmlWidth = width;
224
htmlHeight = height;
225
+ hideTools = true;
226
+ initialZoom = new InitialZoom(1.0f);
227
}
228
229
0 commit comments