Skip to content

Commit

Permalink
3.7.6 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Wenjie Qiao committed Feb 15, 2019
1 parent ab28f00 commit b2f244f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion JIDE Common Layer.iml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/properties" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/properties" type="java-resource" />
<sourceFolder url="file://$MODULE_DIR$/src-jdk9" isTestSource="false" />
<excludeFolder url="file://$MODULE_DIR$/classes" />
<excludeFolder url="file://$MODULE_DIR$/javadoc" />
Expand Down
2 changes: 1 addition & 1 deletion src/com/jidesoft/plaf/office2007/Office2007Painter.java
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public ThemePainter getDefaultPainter() {

public void installDefaults() {
Boolean highContrast = UIManager.getBoolean("Theme.highContrast");
if (highContrast) {
if (highContrast) {
super.installDefaults();
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/com/jidesoft/swing/CheckBoxListCellRenderer.java
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ else if (list instanceof CheckBoxListWithSelectable) {
}

private String convertElementToString(Locale locale, Object value) {
if (CheckBoxList.ALL_ENTRY.equals(value)) {
if (CheckBoxList.ALL_ENTRY.equals(value) || "(All)".equals(value)) {
return Resource.getResourceBundle(locale).getString("CheckBoxList.all");
}
return (value == null) ? "" : value.toString();
Expand Down

0 comments on commit b2f244f

Please sign in to comment.