diff options
| author | Nicolas Dufour <nicoduf@yahoo.fr> | 2012-03-22 19:19:09 +0000 |
|---|---|---|
| committer | JazzyNico <nicoduf@yahoo.fr> | 2012-03-22 19:19:09 +0000 |
| commit | d622704efbe803d7e271bc41655dc4432a1d556e (patch) | |
| tree | 7089850074cf5568beaf3375dcff87bc3c57d264 /src/ui/dialog/transformation.cpp | |
| parent | UI. Fix for bug #962002 (<image> context menu item Edit externally… ignores... (diff) | |
| download | inkscape-d622704efbe803d7e271bc41655dc4432a1d556e.tar.gz inkscape-d622704efbe803d7e271bc41655dc4432a1d556e.zip | |
UI. Patch for Bug #666370 (Not all units in the Object Transform dialog are translatable) by Fernando Lucchesi.
Fixed bugs:
- https://launchpad.net/bugs/666370
(bzr r11116)
Diffstat (limited to 'src/ui/dialog/transformation.cpp')
| -rw-r--r-- | src/ui/dialog/transformation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/dialog/transformation.cpp b/src/ui/dialog/transformation.cpp index 9b65c1f68..1951dc92a 100644 --- a/src/ui/dialog/transformation.cpp +++ b/src/ui/dialog/transformation.cpp @@ -724,7 +724,7 @@ void Transformation::applyPageScale(Inkscape::Selection *selection) void Transformation::applyPageRotate(Inkscape::Selection *selection) { - double angle = _scalar_rotate.getValue("deg"); + double angle = _scalar_rotate.getValue(DEG); Inkscape::Preferences *prefs = Inkscape::Preferences::get(); if (prefs->getBool("/dialogs/transformation/applyseparately")) { |
