From ec9d50a43aa25390f5308c700dd0e39f0989c537 Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Tue, 25 Oct 2011 19:01:53 +0000 Subject: [PATCH] Set shadow_w to the correct value in AssStyle's copy constructor Originally committed to SVN as r5779. --- aegisub/src/ass_style.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aegisub/src/ass_style.cpp b/aegisub/src/ass_style.cpp index 4f02b980b..1305c7ed7 100644 --- a/aegisub/src/ass_style.cpp +++ b/aegisub/src/ass_style.cpp @@ -192,7 +192,7 @@ AssStyle::AssStyle(const AssStyle& s) , angle(s.angle) , borderstyle(s.borderstyle) , outline_w(s.outline_w) -, shadow_w(s.outline_w) +, shadow_w(s.shadow_w) , alignment(s.alignment) , encoding(s.encoding) , relativeTo(s.relativeTo)