### Eclipse Workspace Patch 1.0
#P org.sophie2.main.func.text
|
|
|
203 | 203 | protected int computeAlignment() { |
204 | 204 | return FlowLayout.LEFT; |
205 | 205 | } |
206 | | |
| 206 | |
207 | 207 | @Override |
208 | 208 | protected int computeHorizontalGap() { |
209 | 209 | return 0; |
210 | 210 | } |
211 | | |
| 211 | |
212 | 212 | private final HotAttr<String> getAttribute() { |
213 | 213 | return CommonAttr.FONT_FAMILY; |
214 | 214 | } |
… |
… |
|
258 | 258 | protected int computeAlignment() { |
259 | 259 | return FlowLayout.LEFT; |
260 | 260 | } |
261 | | |
| 261 | |
262 | 262 | @Override |
263 | 263 | protected int computeHorizontalGap() { |
264 | 264 | return 0; |
… |
… |
|
284 | 284 | |
285 | 285 | @Override |
286 | 286 | 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 | |
288 | 305 | } |
289 | 306 | } |
290 | 307 | } |
… |
… |
|
629 | 646 | String field = input.getFieldValue(); |
630 | 647 | Float fontSize ; |
631 | 648 | |
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; |
637 | 651 | } |
| 652 | fontSize = input.getSelectedItem() != null ? new Float(input |
| 653 | .getSelectedItem()) : Float.parseFloat(field); |
638 | 654 | |
639 | 655 | TextStyleUtils.addStyleToSelection( |
640 | 656 | AppHaloUtil.getWorkArea(source), source.getAttribute(), |