diff options
| author | bulia byak <buliabyak@gmail.com> | 2007-02-26 19:32:23 +0000 |
|---|---|---|
| committer | buliabyak <buliabyak@users.sourceforge.net> | 2007-02-26 19:32:23 +0000 |
| commit | 9f5b36ddb7aaa7c0dc1aae8b6b7cae7333bcbb6d (patch) | |
| tree | 87e5b66d7005434125d810d4305c86726c1eb4fa /src/ui | |
| parent | move flood under calligraphic (diff) | |
| download | inkscape-9f5b36ddb7aaa7c0dc1aae8b6b7cae7333bcbb6d.tar.gz inkscape-9f5b36ddb7aaa7c0dc1aae8b6b7cae7333bcbb6d.zip | |
rename flood to paintbucket, copyedit
(bzr r2449)
Diffstat (limited to 'src/ui')
| -rw-r--r-- | src/ui/dialog/inkscape-preferences.cpp | 6 | ||||
| -rw-r--r-- | src/ui/dialog/inkscape-preferences.h | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/ui/dialog/inkscape-preferences.cpp b/src/ui/dialog/inkscape-preferences.cpp index c9e154201..16be12449 100644 --- a/src/ui/dialog/inkscape-preferences.cpp +++ b/src/ui/dialog/inkscape-preferences.cpp @@ -380,6 +380,9 @@ void InkscapePreferences::initPageTools() _("If on, pen width is in absolute units (px) independent of zoom; otherwise pen width depends on zoom so that it looks the same at any zoom")); _page_calligraphy.add_line( false, "", _calligrapy_keep_selected, "", _("If on, each object created with this tool will remain selected after you finish drawing it")); + //Paint Bucket + this->AddPage(_page_paintbucket, _("Paint Bucket"), iter_tools, PREFS_PAGE_TOOLS_PAINTBUCKET); + this->AddNewObjectsStyle(_page_paintbucket, "tools.paintbucket"); //Text this->AddPage(_page_text, _("Text"), iter_tools, PREFS_PAGE_TOOLS_TEXT); this->AddSelcueCheckbox(_page_text, "tools.text", true); @@ -397,9 +400,6 @@ void InkscapePreferences::initPageTools() this->AddPage(_page_dropper, _("Dropper"), iter_tools, PREFS_PAGE_TOOLS_DROPPER); this->AddSelcueCheckbox(_page_dropper, "tools.dropper", true); this->AddGradientCheckbox(_page_dropper, "tools.dropper", true); - //Flood - this->AddPage(_page_flood, _("Flood Fill"), iter_tools, PREFS_PAGE_TOOLS_FLOOD); - this->AddNewObjectsStyle(_page_flood, "tools.flood"); } void InkscapePreferences::initPageWindows() diff --git a/src/ui/dialog/inkscape-preferences.h b/src/ui/dialog/inkscape-preferences.h index 96aea6e61..bf327bf0e 100644 --- a/src/ui/dialog/inkscape-preferences.h +++ b/src/ui/dialog/inkscape-preferences.h @@ -48,11 +48,11 @@ enum { PREFS_PAGE_TOOLS_PENCIL, PREFS_PAGE_TOOLS_PEN, PREFS_PAGE_TOOLS_CALLIGRAPHY, + PREFS_PAGE_TOOLS_PAINTBUCKET, PREFS_PAGE_TOOLS_TEXT, PREFS_PAGE_TOOLS_GRADIENT, PREFS_PAGE_TOOLS_CONNECTOR, PREFS_PAGE_TOOLS_DROPPER, - PREFS_PAGE_TOOLS_FLOOD, PREFS_PAGE_WINDOWS, PREFS_PAGE_CLONES, PREFS_PAGE_FILTERS, @@ -99,7 +99,7 @@ protected: _page_clones, _page_transforms, _page_filters, _page_select, _page_misc; DialogPage _page_selector, _page_node, _page_zoom, _page_shapes, _page_pencil, _page_pen, _page_calligraphy, _page_text, _page_gradient, _page_connector, _page_dropper; - DialogPage _page_rectangle, _page_ellipse, _page_star, _page_spiral, _page_flood; + DialogPage _page_rectangle, _page_ellipse, _page_star, _page_spiral, _page_paintbucket; PrefSpinButton _mouse_sens, _mouse_thres; |
