From 518c50d07dffc382d7646a6bceb327919faa0973 Mon Sep 17 00:00:00 2001 From: Dan Donovan Date: Thu, 18 Jan 2007 08:01:16 +0000 Subject: [PATCH] Don't set alpha in SetWXColor (for now?) Originally committed to SVN as r831. --- aegisub/ass_style.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aegisub/ass_style.cpp b/aegisub/ass_style.cpp index e5765758b..96f850c77 100644 --- a/aegisub/ass_style.cpp +++ b/aegisub/ass_style.cpp @@ -96,7 +96,7 @@ void AssColor::SetWXColor(const wxColor &color) { r = color.Red(); g = color.Green(); b = color.Blue(); - a = color.Alpha(); + //a = color.Alpha(); }