Ticket #2479: 2479.patch

File 2479.patch, 2.1 KB (added by diana, 15 years ago)
  • src/main/java/org/sophie2/main/func/text/styling/TextFontHud.java

    ### Eclipse Workspace Patch 1.0
    #P org.sophie2.main.func.text
     
    203203                        protected int computeAlignment() { 
    204204                                return FlowLayout.LEFT; 
    205205                        } 
    206                          
     206 
    207207                        @Override 
    208208                        protected int computeHorizontalGap() { 
    209209                                return 0; 
    210210                        } 
    211                          
     211 
    212212                        private final HotAttr<String> getAttribute() { 
    213213                                return CommonAttr.FONT_FAMILY; 
    214214                        } 
     
    258258                        protected int computeAlignment() { 
    259259                                return FlowLayout.LEFT; 
    260260                        } 
    261                          
     261 
    262262                        @Override 
    263263                        protected int computeHorizontalGap() { 
    264264                                return 0; 
     
    284284 
    285285                        @Override 
    286286                        protected BoundValidation validate(ComboInput<Float> inputData) { 
    287                                 return BoundValidation.SUCCESS; 
     287 
     288 
     289                                String fontSize = null; 
     290                                if (inputData.getSelectedItem() != null) { 
     291                                        fontSize = "" + inputData.getSelectedItem(); 
     292                                } else if (inputData.getFieldValue() != null) { 
     293                                        fontSize = inputData.getFieldValue(); 
     294                                } 
     295 
     296                                if (fontSize != null) { 
     297                                        return BoundValidation.validateNumber(fontSize, Float.class, 
     298                                                        0f, Float.MAX_VALUE, 
     299                                        "Font size should be between %.2f%% and %.0f%%."); 
     300                                } 
     301 
     302                                return new BoundValidation(BoundValidation.Status.ERROR, 
     303                                "Only positive numeric values allowed here."); 
     304 
    288305                        } 
    289306                } 
    290307        } 
     
    629646                                String field = input.getFieldValue();  
    630647                                Float fontSize ; 
    631648 
    632                                 if (field!=null && !"".equals(field)) { 
    633                                         fontSize = Float.parseFloat(field); 
    634                                 } else { 
    635                                         fontSize = input.getSelectedItem() != null ? new Float(input 
    636                                                         .getSelectedItem()) : new Float(input.getFieldValue()); 
     649                                if (field == null || "".equals(field)) { 
     650                                        return false; 
    637651                                } 
     652                                fontSize = input.getSelectedItem() != null ? new Float(input 
     653                                                .getSelectedItem()) : Float.parseFloat(field); 
    638654 
    639655                                TextStyleUtils.addStyleToSelection( 
    640656                                                AppHaloUtil.getWorkArea(source), source.getAttribute(),