summaryrefslogtreecommitdiffstats
path: root/src/widgets/select-toolbar.cpp
diff options
context:
space:
mode:
authorMatthew Petroff <matthew@mpetroff.net>2013-07-31 20:45:07 +0000
committerMatthew Petroff <matthew@mpetroff.net>2013-07-31 20:45:07 +0000
commitc135cb8c39a4004e9eb8adb227ba4c54848a8c45 (patch)
tree3745b186ec8498de76f60c7ceada8da787405259 /src/widgets/select-toolbar.cpp
parentCleanup. (diff)
downloadinkscape-c135cb8c39a4004e9eb8adb227ba4c54848a8c45.tar.gz
inkscape-c135cb8c39a4004e9eb8adb227ba4c54848a8c45.zip
Added percent support back to select toolbar.
(bzr r12380.1.53)
Diffstat (limited to 'src/widgets/select-toolbar.cpp')
-rw-r--r--src/widgets/select-toolbar.cpp13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/widgets/select-toolbar.cpp b/src/widgets/select-toolbar.cpp
index 617757845..ab6d6ca3b 100644
--- a/src/widgets/select-toolbar.cpp
+++ b/src/widgets/select-toolbar.cpp
@@ -89,7 +89,7 @@ sp_selection_layout_widget_update(SPWidget *spw, Inkscape::Selection *sel)
};
if (unit.type == Inkscape::Util::UNIT_TYPE_DIMENSIONLESS) {
- double const val = unit.factor;
+ double const val = unit.factor * 100;
for (unsigned i = 0; i < G_N_ELEMENTS(keyval); ++i) {
GtkAdjustment *a = GTK_ADJUSTMENT(g_object_get_data(G_OBJECT(spw), keyval[i].key));
gtk_adjustment_set_value(a, val);
@@ -202,13 +202,13 @@ sp_object_layout_any_value_changed(GtkAdjustment *adj, SPWidget *spw)
y1 = y0 + Quantity::convert(gtk_adjustment_get_value(a_h), unit, "px");;
yrel = Quantity::convert(gtk_adjustment_get_value(a_h), unit, "px") / bbox_user->dimensions()[Geom::Y];
} else {
- double const x0_propn = gtk_adjustment_get_value (a_x) * unit.factor;
+ double const x0_propn = gtk_adjustment_get_value (a_x) / 100 / unit.factor;
x0 = bbox_user->min()[Geom::X] * x0_propn;
- double const y0_propn = gtk_adjustment_get_value (a_y) * unit.factor;
+ double const y0_propn = gtk_adjustment_get_value (a_y) / 100 / unit.factor;
y0 = y0_propn * bbox_user->min()[Geom::Y];
- xrel = gtk_adjustment_get_value (a_w) * unit.factor;
+ xrel = gtk_adjustment_get_value (a_w) / 100 / unit.factor;
x1 = x0 + xrel * bbox_user->dimensions()[Geom::X];
- yrel = gtk_adjustment_get_value (a_h) * unit.factor;
+ yrel = gtk_adjustment_get_value (a_h) / 100 / unit.factor;
y1 = y0 + yrel * bbox_user->dimensions()[Geom::Y];
}
@@ -493,7 +493,8 @@ void sp_select_toolbox_prep(SPDesktop *desktop, GtkActionGroup* mainActions, GOb
// Create the units menu.
UnitTracker* tracker = new UnitTracker(Inkscape::Util::UNIT_TYPE_LINEAR);
- //tracker->addUnit( SP_UNIT_PERCENT, 0 );
+ Inkscape::Util::UnitTable unit_table;
+ tracker->addUnit(unit_table.getUnit("%"));
tracker->setActiveUnit( sp_desktop_namedview(desktop)->doc_units );
g_object_set_data( G_OBJECT(spw), "tracker", tracker );