Skip to content

Commit

Permalink
Release 2.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Vanco committed May 1, 2022
1 parent 3000a21 commit a0e4c07
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# SequenceDiagram Changelog

## [Unreleased]
## [2.1.8]
### Fixed
- Unable to export large images #122, #119

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ Please try to experience it and find what happen.
Have fun!

## Version History
**Current Version 2.1.7**
**Current Version 2.1.8**

versions:
[Changelog](CHANGELOG.md)
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

pluginGroup = vanstudio
pluginName = SequenceDiagram
pluginVersion = 2.1.7
pluginVersion = 2.1.8

# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
# for insight into build numbers and IntelliJ Platform versions.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

public class ExportAction extends SequenceAction {

private Display _display = null;
private final Display _display;

public ExportAction(Display display) {
super("ExportAction", true);
Expand All @@ -30,7 +30,7 @@ public void actionPerformed(ActionEvent e) {

private void export(File file) {
try {
_display.saveImageToFile(file);
_display.saveImageToSvgFile(file);
} catch(IOException e) {
e.printStackTrace();
}
Expand Down

0 comments on commit a0e4c07

Please sign in to comment.