diff -r 94b6d1326534 -r 712d047abd8b core/com.nokia.carbide.discovery.ui/src/com/nokia/carbide/internal/discovery/ui/editor/RoundedCornerComposite.java --- 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); } } }