@@ -49,7 +49,7 @@ public class Svg2XmlGui implements ActionListener{
4949 protected boolean roundCoords =true ;
5050
5151 //round to decimals (used with roundCoords=true)
52- protected int decimalsToRound =2 ;
52+ protected int decimalsToRound =3 ;
5353
5454 //i'm not yet sure about the exact functionality of this
5555 protected boolean overrideLocalConfig =false ; //TODO make use of this var
@@ -136,7 +136,7 @@ public void actionPerformed(ActionEvent e) {
136136 relScalePanel .add (relScaleComponent );
137137
138138 JPanel absScalePanel = new JPanel ();
139- useAbsScaleComponent = new JRadioButton ("TODO " , !relativeScaling ); //Use absolute scaling
139+ useAbsScaleComponent = new JRadioButton ("Normalize size to: " , !relativeScaling ); //Use absolute scaling
140140 JLabel absScaleLabel1 = new JLabel ("x:" );
141141 absXScaleComponent = new JTextField (Double .toString (absoluteScalingX ), 4 );
142142 JLabel absScaleLabel2 = new JLabel ("px y:" );
@@ -156,7 +156,7 @@ public void actionPerformed(ActionEvent e) {
156156
157157 JPanel roundPanel = new JPanel ();
158158 roundCoordinatesComponent = new JCheckBox ("Round coordinates to " , roundCoords );
159- roundDecimalNumComponent = new JTextField ("2 " , 4 );
159+ roundDecimalNumComponent = new JTextField ("3 " , 4 );
160160 JLabel decimalLabel1 = new JLabel ("decimals" );
161161 roundPanel .add (roundCoordinatesComponent );
162162 roundPanel .add (roundDecimalNumComponent );
0 commit comments