|
|
|
@ -24,12 +24,6 @@ public class FormWidgetCardPane extends AbstractAttrNoScrollPane {
|
|
|
|
|
this.initLayout(); |
|
|
|
|
this.initScrollPane(); |
|
|
|
|
this.initPropertyPane(); |
|
|
|
|
content.addMouseListener(new MouseAdapter() { |
|
|
|
|
@Override |
|
|
|
|
public void mouseClicked(MouseEvent e) { |
|
|
|
|
content.requestFocusInWindow(); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void initPropertyPane() { |
|
|
|
@ -54,6 +48,12 @@ public class FormWidgetCardPane extends AbstractAttrNoScrollPane {
|
|
|
|
|
this.add(basicScrollPane, BorderLayout.CENTER); |
|
|
|
|
this.content = jPanel; |
|
|
|
|
this.content.requestFocusInWindow(); |
|
|
|
|
this.content.addMouseListener(new MouseAdapter() { |
|
|
|
|
@Override |
|
|
|
|
public void mouseClicked(MouseEvent e) { |
|
|
|
|
content.requestFocusInWindow(); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private void initLayout() { |
|
|
|
|