From 32acb6067bc9f41d661a8e0e6800b096694a4d1e Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Mon, 16 Dec 2013 20:23:02 -0800 Subject: [PATCH] Fix the default angle for styles --- aegisub/src/ass_style.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aegisub/src/ass_style.h b/aegisub/src/ass_style.h index aa4af02d4..149fd3d13 100644 --- a/aegisub/src/ass_style.h +++ b/aegisub/src/ass_style.h @@ -60,7 +60,7 @@ public: double scalex = 100.; ///< Font x scale with 100 = 100% double scaley = 100.; ///< Font y scale with 100 = 100% double spacing = 0.; ///< Additional spacing between characters in pixels - double angle = 0.1; ///< Counterclockwise z rotation in degrees + double angle = 0.; ///< Counterclockwise z rotation in degrees int borderstyle = 1; ///< 1: Normal; 3: Opaque box; others are unused in Aegisub double outline_w = 2.; ///< Outline width in pixels double shadow_w = 2.; ///< Shadow distance in pixels