Skip to content

Commit

Permalink
fix: Make ColorWheel bigger
Browse files Browse the repository at this point in the history
  • Loading branch information
ktgw0316 committed Sep 19, 2024
1 parent e3c44c1 commit e4cebb3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public ColorWheel() {

@Override
public Dimension getPreferredSize() {
return new Dimension(100, 100);
return new Dimension(150, 150);
}

Color getPickedColor() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,6 @@ protected void paintComponent( Graphics graphics ) {

private Color m_color;

private final static Dimension PREFERRED_SIZE = new Dimension( 35, 35 );
private final static Dimension PREFERRED_SIZE = new Dimension( 50, 50 );
}
/* vim:set et sw=4 ts=4: */

0 comments on commit e4cebb3

Please sign in to comment.