mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
Merge pull request #5230 from GKFX/bugfix-moviemaker5168
Unlock "Create Movie" in Movie Maker after use
This commit is contained in:
@@ -606,12 +606,14 @@ public class MovieMaker extends JFrame implements Tool {
|
||||
} catch (Exception ex) {
|
||||
t = ex;
|
||||
}
|
||||
t.printStackTrace();
|
||||
JOptionPane.showMessageDialog(MovieMaker.this,
|
||||
if (t != null) {
|
||||
t.printStackTrace();
|
||||
JOptionPane.showMessageDialog(MovieMaker.this,
|
||||
Language.text("movie_maker.error.movie_failed") + "\n" +
|
||||
(t.getMessage() == null ? t.toString() : t.getMessage()),
|
||||
Language.text("movie_maker.error.sorry"),
|
||||
JOptionPane.ERROR_MESSAGE);
|
||||
}
|
||||
createMovieButton.setEnabled(true);
|
||||
}
|
||||
}.execute();
|
||||
|
||||
Reference in New Issue
Block a user