Browse Source

Merge pull request #87 from gabomdq/fix-elementstylecache

Fix copy paste error in Element Style Cache
Lloyd Weehuizen 13 years ago
parent
commit
af17bee633
1 changed files with 1 additions and 1 deletions
  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)