From: dvlierop2 Date: Mon, 9 Apr 2007 15:15:36 +0000 (+0000) Subject: Remove 'default scale origin' from selector tool's preferences X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=b87ac1b021756da7aba18d8c6bed38cc031ee0d4;p=inkscape.git Remove 'default scale origin' from selector tool's preferences --- diff --git a/src/ui/dialog/inkscape-preferences.cpp b/src/ui/dialog/inkscape-preferences.cpp index dea091f20..3a3c4f14f 100644 --- a/src/ui/dialog/inkscape-preferences.cpp +++ b/src/ui/dialog/inkscape-preferences.cpp @@ -337,13 +337,7 @@ void InkscapePreferences::initPageTools() _t_sel_cue_box.init ( _("Box"), "options.selcue", "value", Inkscape::SelCue::BBOX, false, &_t_sel_cue_none); _page_selector.add_line( true, "", _t_sel_cue_box, "", _("Each selected object displays its bounding box")); - _page_selector.add_group_header( _("Default scale origin:")); - _t_sel_org_edge.init ( _("Opposite bounding box edge"), "tools.select", "scale_origin", "bbox", true, 0); - _page_selector.add_line( true, "", _t_sel_org_edge, "", - _("Default scale origin will be on the bounding box of the item")); - _t_sel_org_node.init ( _("Farthest opposite node"), "tools.select", "scale_origin", "points", false, &_t_sel_org_edge); - _page_selector.add_line( true, "", _t_sel_org_node, "", - _("Default scale origin will be on the bounding box of the item's points")); + //Node this->AddPage(_page_node, _("Node"), iter_tools, PREFS_PAGE_TOOLS_NODE); AddSelcueCheckbox(_page_node, "tools.nodes", true); diff --git a/src/ui/dialog/inkscape-preferences.h b/src/ui/dialog/inkscape-preferences.h index 813929d2d..eacf0a079 100644 --- a/src/ui/dialog/inkscape-preferences.h +++ b/src/ui/dialog/inkscape-preferences.h @@ -112,7 +112,7 @@ protected: PrefSpinButton _steps_arrow, _steps_scale, _steps_inset, _steps_zoom; PrefRadioButton _t_sel_trans_obj, _t_sel_trans_outl, _t_sel_cue_none, _t_sel_cue_mark, - _t_sel_cue_box, _t_sel_org_edge, _t_sel_org_node; + _t_sel_cue_box; PrefSpinButton _t_pencil_tolerance;