Skip to content

Commit

Permalink
Random tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbylight committed Aug 27, 2013
1 parent 9d89f79 commit 0c05e04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/fife/ui/autocomplete/SizeGrip.java
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ public void updateUI() {
super.updateUI();
// TODO: Key off of Aqua LaF, not just OS X, as this size grip looks
// bad on other LaFs on Mac such as Nimbus.
if (System.getProperty("os.name").indexOf("OS X")>-1) {
if (System.getProperty("os.name").contains("OS X")) {
if (osxSizeGrip==null) {
osxSizeGrip = createOSXSizeGrip();
}
Expand Down

0 comments on commit 0c05e04

Please sign in to comment.