ports/devel/charva/files/patch-java_src_charvax_swing_ButtonGroup.java
Mathieu Arnold 7ae7b018cc With the power of USES=dos2unix, get rid of most patches and files
with CRLF.

While there, run make makepatch, rename patches to use the new scheme,
and various fixes.

With hat:	portmgr
Sponsored by:	Absolight
2016-06-20 16:23:28 +00:00

26 lines
964 B
Java

--- java/src/charvax/swing/ButtonGroup.java.orig 2016-06-20 12:40:44 UTC
+++ java/src/charvax/swing/ButtonGroup.java
@@ -63,9 +63,10 @@ public class ButtonGroup
* Adds the specified button to the group.
*/
public void add(AbstractButton button_) {
+ if (getSelection() != null)
+ button_.setSelected(false);
_buttons.add(button_);
button_.addItemListener(this);
- button_.setSelected(false);
}
/**
@@ -133,10 +134,9 @@ public class ButtonGroup
for (Enumeration e = _buttons.elements(); e.hasMoreElements();) {
AbstractButton b = (AbstractButton) e.nextElement();
- if (source != b || statechange != ItemEvent.SELECTED) {
+ if (source != b && statechange == ItemEvent.SELECTED) {
if (b.isSelected()) {
b._selected = false;
- b.setEnabled(true);
}
}
}