diff options
| author | Jabier Arraiza Cenoz <jabier.arraiza@marker.es> | 2016-06-19 01:30:10 +0000 |
|---|---|---|
| committer | jabiertxof <info@marker.es> | 2016-06-19 01:30:10 +0000 |
| commit | 417ba16c9f42a5476045ca4f1825fff2fed518ba (patch) | |
| tree | 3d3c9620ebb4b6dc6998550b353cf1825cf2f973 /src/ui | |
| parent | Fixes when moves a path (diff) | |
| download | inkscape-417ba16c9f42a5476045ca4f1825fff2fed518ba.tar.gz inkscape-417ba16c9f42a5476045ca4f1825fff2fed518ba.zip | |
Organize doeffect function
(bzr r13645.1.164)
Diffstat (limited to 'src/ui')
| -rw-r--r-- | src/ui/dialog/lpe-fillet-chamfer-properties.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ui/dialog/lpe-fillet-chamfer-properties.cpp b/src/ui/dialog/lpe-fillet-chamfer-properties.cpp index 098a84edf..98b654640 100644 --- a/src/ui/dialog/lpe-fillet-chamfer-properties.cpp +++ b/src/ui/dialog/lpe-fillet-chamfer-properties.cpp @@ -167,7 +167,7 @@ void FilletChamferPropertiesDialog::_apply() } _satellite.amount = d_pos; size_t steps = (size_t)_fillet_chamfer_chamfer_subdivisions.get_value(); - if(steps < 1) { + if (steps < 1) { steps = 1; } _satellite.steps = steps; @@ -204,10 +204,10 @@ void FilletChamferPropertiesDialog::_setSatellite(Satellite satellite) { double position; std::string distance_or_radius = std::string(_("Radius")); - if(_aprox) { + if (_aprox) { distance_or_radius = std::string(_("Radius approximated")); } - if(_use_distance) { + if (_use_distance) { distance_or_radius = std::string(_("Knot distance")); } if (satellite.is_time) { |
