From d641c86854542bed3514da4e7c3d15035fe1b742 Mon Sep 17 00:00:00 2001 From: Kris De Gussem Date: Tue, 3 Feb 2015 17:06:14 +0100 Subject: Typos (Bug #1417127) (bzr r13895) --- src/ui/dialog/inkscape-preferences.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ui') diff --git a/src/ui/dialog/inkscape-preferences.cpp b/src/ui/dialog/inkscape-preferences.cpp index 0ea6cf082..9f86158aa 100644 --- a/src/ui/dialog/inkscape-preferences.cpp +++ b/src/ui/dialog/inkscape-preferences.cpp @@ -1491,7 +1491,7 @@ void InkscapePreferences::initKeyboardShortcuts(Gtk::TreeModel::iterator iter_ui _kb_filelist.init( "/options/kbshortcuts/shortcutfile", &fileLabels[0], &fileNames[0], fileLabels.size(), fileNames[0]); - Glib::ustring tooltip(_("Select a file of predefined shortcuts to use. Any customized shortcuts you create will be added seperately to ")); + Glib::ustring tooltip(_("Select a file of predefined shortcuts to use. Any customized shortcuts you create will be added separately to ")); tooltip += Glib::ustring(IO::Resource::get_path(IO::Resource::USER, IO::Resource::KEYS, "default.xml")); _page_keyshortcuts.add_line( false, _("Shortcut file:"), _kb_filelist, "", tooltip.c_str(), false); -- cgit v1.2.3 From e418967124f31abb39f1e8b1cc389d4ddddbf1c7 Mon Sep 17 00:00:00 2001 From: Nicolas Dufour Date: Fri, 6 Feb 2015 07:35:44 +0100 Subject: Fix for Bug #1417752 (Find & Replace ignores Flowed text objects). Fixed bugs: - https://launchpad.net/bugs/1417752 (bzr r13903) --- src/ui/dialog/find.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/ui') diff --git a/src/ui/dialog/find.cpp b/src/ui/dialog/find.cpp index 6d8d64607..951cb01ea 100644 --- a/src/ui/dialog/find.cpp +++ b/src/ui/dialog/find.cpp @@ -37,6 +37,7 @@ #include "preferences.h" #include "sp-text.h" #include "sp-flowtext.h" +#include "sp-flowdiv.h" #include "text-editing.h" #include "sp-tspan.h" #include "sp-tref.h" @@ -693,7 +694,10 @@ bool Find::item_type_match (SPItem *item) } else if (dynamic_cast(item) || dynamic_cast(item) || dynamic_cast(item)) { return (all || check_paths.get_active()); - } else if (dynamic_cast(item) || dynamic_cast(item) || dynamic_cast(item) || dynamic_cast(item)) { + } else if (dynamic_cast(item) || dynamic_cast(item) || + dynamic_cast(item) || dynamic_cast(item) || + dynamic_cast(item) || dynamic_cast(item) || + dynamic_cast(item) || dynamic_cast(item)) { return (all || check_texts.get_active()); } else if (dynamic_cast(item) && !desktop->isLayer(item) ) { // never select layers! -- cgit v1.2.3