core/com.nokia.carbide.discovery.ui/src/com/nokia/carbide/internal/discovery/ui/editor/RoundedCornerComposite.java
changeset 1618 712d047abd8b
parent 1609 085da1889c59
child 1810 2ccd3660a736
--- a/core/com.nokia.carbide.discovery.ui/src/com/nokia/carbide/internal/discovery/ui/editor/RoundedCornerComposite.java	Wed Jul 14 15:59:19 2010 -0500
+++ b/core/com.nokia.carbide.discovery.ui/src/com/nokia/carbide/internal/discovery/ui/editor/RoundedCornerComposite.java	Thu Jul 15 09:59:29 2010 -0500
@@ -36,11 +36,11 @@
 		super.drawBackground(gc, x, y, width, height);
 		if (background != null) {
 			gc.setBackground(background);
-			gc.fillRoundRectangle(0, 0, width, height, 5, 5);
+			gc.fillRoundRectangle(0, 0, width, height, 6, 6);
 		}
 		if (outline != null) {
 			gc.setForeground(outline);
-			gc.drawRoundRectangle(2, 2, width - 4, height - 4, 5, 5);
+			gc.drawRoundRectangle(2, 2, width - 4, height - 4, 6, 6);
 		}
 	}
 }