Skip to content

Commit

Permalink
updating jar
Browse files Browse the repository at this point in the history
  • Loading branch information
atarw committed Jul 31, 2018
1 parent 05f5e2b commit 28254e7
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 22 deletions.
48 changes: 28 additions & 20 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified lib/material-ui-swing.jar
Binary file not shown.
1 change: 0 additions & 1 deletion src/mdlaf/components/button/MaterialButtonUI.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ public void installUI (JComponent c) {
AbstractButton button = (AbstractButton) c;
button.setOpaque (false);
button.setBorder (BorderFactory.createEmptyBorder (7, 17, 7, 17));

button.setBackground (MaterialColors.LIGHT_BLUE_400);
button.setForeground (Color.WHITE);
button.setFont (MaterialFonts.MEDIUM);
Expand Down
2 changes: 1 addition & 1 deletion src/mdlaf/components/slider/MaterialSliderUI.java
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public void paintThumb (Graphics g) {
g.setColor (slider.getForeground ());
drawCircle (g, cx, cy, NORMAL_THUMB_RADIUS);

// need to draw loaded part of progress line
// need to redraw loaded part of progress line
Line loaded = getTrack (true);
g.drawLine (loaded.x1, loaded.y1, loaded.x2, loaded.y2);
}
Expand Down

0 comments on commit 28254e7

Please sign in to comment.