Skip to content

Commit

Permalink
Use Import instead of Import Image, since we can import other formats…
Browse files Browse the repository at this point in the history
… too.
  • Loading branch information
jcome committed Nov 27, 2014
1 parent 0472395 commit 7054db9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions synfig-studio/src/synfigapp/canvasinterface.cpp
Expand Up @@ -680,13 +680,13 @@ CanvasInterface::jump_to_prev_keyframe()
bool
CanvasInterface::import(const synfig::String &filename, synfig::String &errors, synfig::String &warnings, bool resize_image)
{
Action::PassiveGrouper group(get_instance().get(),_("Import Image"));
Action::PassiveGrouper group(get_instance().get(),_("Import"));

synfig::info("Attempting to import "+filename);

if (filename_extension(filename) == "")
{
get_ui_interface()->error(_("Filename must have an extension!"));
get_ui_interface()->error(_("File name must have an extension!"));
return false;
}

Expand Down

0 comments on commit 7054db9

Please sign in to comment.