From: Krzysztof KosiƄski Date: Thu, 14 Jan 2010 18:31:45 +0000 (+0100) Subject: Remove "show transform handles" from prefs - no longer necessary X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=200a3b08f51be045c49aa3e8e5fdd3e6ecb86c8f;p=inkscape.git Remove "show transform handles" from prefs - no longer necessary --- diff --git a/src/ui/dialog/inkscape-preferences.cpp b/src/ui/dialog/inkscape-preferences.cpp index 11850cffc..348bd74db 100644 --- a/src/ui/dialog/inkscape-preferences.cpp +++ b/src/ui/dialog/inkscape-preferences.cpp @@ -447,8 +447,6 @@ void InkscapePreferences::initPageTools() _t_node_pathflash_timeout.init("/tools/nodes/pathflash_timeout", 0, 10000.0, 100.0, 100.0, 1000.0, true, false); _page_node.add_line( false, _("Flash time"), _t_node_pathflash_timeout, "ms", _("Specifies how long the path outline will be visible after a mouse-over (in milliseconds). Specify 0 to have the outline shown until mouse leaves the path."), false); _page_node.add_group_header(_("Transform Handles:")); - _t_node_show_transform_handles.init(_("Show transform handles"), "/tools/nodes/show_transform_handles", true); - _page_node.add_line( true, "", _t_node_show_transform_handles, "", _("Show scaling, rotation and skew handles for node selections.")); _t_node_single_node_transform_handles.init(_("Show transform handles for single nodes"), "/tools/nodes/single_node_transform_handles", false); _page_node.add_line( true, "", _t_node_single_node_transform_handles, "", _("Show transform handles even when only a single node is selected.")); diff --git a/src/ui/dialog/inkscape-preferences.h b/src/ui/dialog/inkscape-preferences.h index 638c84598..8ab840825 100644 --- a/src/ui/dialog/inkscape-preferences.h +++ b/src/ui/dialog/inkscape-preferences.h @@ -146,7 +146,6 @@ protected: PrefCheckButton _t_node_pathflash_selected; PrefSpinButton _t_node_pathflash_timeout; PrefCheckButton _t_node_show_path_direction; - PrefCheckButton _t_node_show_transform_handles; PrefCheckButton _t_node_single_node_transform_handles; PrefColorPicker _t_node_pathoutline_color;