diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ui/dialog/inkscape-preferences.cpp | 4 | ||||
| -rw-r--r-- | src/ui/widget/preferences-widget.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/ui/dialog/inkscape-preferences.cpp b/src/ui/dialog/inkscape-preferences.cpp index 2d7b6c93d..6ada3384e 100644 --- a/src/ui/dialog/inkscape-preferences.cpp +++ b/src/ui/dialog/inkscape-preferences.cpp @@ -629,8 +629,8 @@ void InkscapePreferences::symbolicThemeCheck() #else path += "/scalable/actions"; #endif - Glib::ustring ret = Glib::build_filename(path, "3dbox_four_handles-symbolic.svg"); - if (Glib::file_test(ret, Glib::FILE_TEST_EXISTS)) { + std::vector<Glib::ustring> symbolic = get_filenames(path, {"-symbolic.svg"}, {}); + if (symbolic.size() > 0) { symbolic = true; } } diff --git a/src/ui/widget/preferences-widget.cpp b/src/ui/widget/preferences-widget.cpp index 171a20418..bdd7c0de9 100644 --- a/src/ui/widget/preferences-widget.cpp +++ b/src/ui/widget/preferences-widget.cpp @@ -888,7 +888,7 @@ void PrefOpenFolder::init(Glib::ustring const &entry_string, Glib::ustring const Gtk::Image *im = sp_get_icon_image("document-open", Gtk::ICON_SIZE_BUTTON); pixlabel->pack_start(*im); Gtk::Label *l = new Gtk::Label(); - l->set_markup_with_mnemonic(_("_Browse...")); + l->set_markup_with_mnemonic(_("_Open")); pixlabel->pack_start(*l); relatedButton->add(*pixlabel); relatedButton->set_tooltip_text(tooltip); |
