Skip to content

Commit

Permalink
export exception
Browse files Browse the repository at this point in the history
  • Loading branch information
TheWillard committed Jun 28, 2020
1 parent 4f2d5f6 commit 78d3567
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/paa-gimp-plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ gboolean savePaa (const gchar *filename, gint32 imageId, gint32 drawableId, GErr
paa.calculateMipmapsAndTaggs();
paa.writePaa(filename);
} catch(std::runtime_error& ex) {
gimp_message(ex.what());
gimp_message((std::string("Exception during Paa Export: \n") + ex.what()).c_str());
return false;
}
return true;
Expand Down

0 comments on commit 78d3567

Please sign in to comment.