Merge pull request #1096 from SiboVG/issue-transition-clipped
Fix transition 'Clipped' checkbox overlapping with comment
This commit is contained in:
commit
6b24e0f58d
@ -48,7 +48,7 @@ public class TransitionConfig extends RocketComponentConfig {
|
|||||||
public TransitionConfig(OpenRocketDocument d, RocketComponent c) {
|
public TransitionConfig(OpenRocketDocument d, RocketComponent c) {
|
||||||
super(d, c);
|
super(d, c);
|
||||||
|
|
||||||
final JPanel panel = new JPanel(new MigLayout("gap rel unrel", "[][65lp::][30lp::]", ""));
|
final JPanel panel = new JPanel(new MigLayout("gap rel unrel, fillx", "[][65lp::][30lp::]", ""));
|
||||||
|
|
||||||
//// Shape selection
|
//// Shape selection
|
||||||
//// Transition shape:
|
//// Transition shape:
|
||||||
@ -69,7 +69,7 @@ public class TransitionConfig extends RocketComponentConfig {
|
|||||||
updateEnabled();
|
updateEnabled();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
panel.add(typeBox, "span, split 2");
|
panel.add(typeBox, "span 3, split 2");
|
||||||
|
|
||||||
{//// Clipped
|
{//// Clipped
|
||||||
final JCheckBox checkbox = new JCheckBox(new BooleanModel(component, "Clipped"));
|
final JCheckBox checkbox = new JCheckBox(new BooleanModel(component, "Clipped"));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user