Add tooltip text for CGCP checkbox
This commit is contained in:
parent
b13f024f55
commit
4db0b16082
@ -56,6 +56,7 @@ RocketPanel.lbl.ViewType = View Type:
|
|||||||
RocketPanel.lbl.Zoom = Zoom:
|
RocketPanel.lbl.Zoom = Zoom:
|
||||||
RocketPanel.lbl.Stability = Stability:
|
RocketPanel.lbl.Stability = Stability:
|
||||||
RocketPanel.checkbox.ShowCGCP = Show CG/CP
|
RocketPanel.checkbox.ShowCGCP = Show CG/CP
|
||||||
|
RocketPanel.checkbox.ShowCGCP.ttip = Disabling this checkbox hides the CG and CP markings in the rocket view.
|
||||||
RocketPanel.lbl.Stages = Stages:
|
RocketPanel.lbl.Stages = Stages:
|
||||||
RocketPanel.ttip.Rotation = Change the rocket's roll rotation (only affects the rocket view)
|
RocketPanel.ttip.Rotation = Change the rocket's roll rotation (only affects the rocket view)
|
||||||
|
|
||||||
|
@ -337,6 +337,7 @@ public class RocketPanel extends JPanel implements TreeSelectionListener, Change
|
|||||||
JCheckBox showCGCP = new JCheckBox();
|
JCheckBox showCGCP = new JCheckBox();
|
||||||
showCGCP.setText(trans.get("RocketPanel.checkbox.ShowCGCP"));
|
showCGCP.setText(trans.get("RocketPanel.checkbox.ShowCGCP"));
|
||||||
showCGCP.setSelected(true);
|
showCGCP.setSelected(true);
|
||||||
|
showCGCP.setToolTipText(trans.get("RocketPanel.checkbox.ShowCGCP.ttip"));
|
||||||
ribbon.add(new JLabel(trans.get("RocketPanel.lbl.Stability")), "cell 4 0, gapleft para");
|
ribbon.add(new JLabel(trans.get("RocketPanel.lbl.Stability")), "cell 4 0, gapleft para");
|
||||||
ribbon.add(showCGCP, "cell 4 1, gapleft para");
|
ribbon.add(showCGCP, "cell 4 1, gapleft para");
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user