Parcourir la source

Fix copy paste error in Element Style Cache

Gabriel Jacobo il y a 13 ans
Parent
commit
354f786c8b
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      Source/Core/ElementStyleCache.cpp

+ 1 - 1
Source/Core/ElementStyleCache.cpp

@@ -144,7 +144,7 @@ void ElementStyleCache::GetBorderWidthProperties(const Property **o_border_top_w
 	{
 		if (!border_bottom_width)
 			border_bottom_width = style->GetProperty(BORDER_BOTTOM_WIDTH);
-		*o_border_bottom_width = border_top_width;
+		*o_border_bottom_width = border_bottom_width;
 	}
 
 	if (o_border_left_width)