File tree Expand file tree Collapse file tree 4 files changed +5
-4
lines changed
src/main/java/org/intellij/sequencer/diagram/app/actions Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1
1
# SequenceDiagram Changelog
2
2
3
3
## [ Unreleased]
4
+ ## [ 2.1.8]
4
5
### Fixed
5
6
- Unable to export large images #122 , #119
6
7
Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ Please try to experience it and find what happen.
101
101
Have fun!
102
102
103
103
## Version History
104
- ** Current Version 2.1.7 **
104
+ ** Current Version 2.1.8 **
105
105
106
106
versions:
107
107
[ Changelog] ( CHANGELOG.md )
Original file line number Diff line number Diff line change 3
3
4
4
pluginGroup = vanstudio
5
5
pluginName = SequenceDiagram
6
- pluginVersion = 2.1.7
6
+ pluginVersion = 2.1.8
7
7
8
8
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
9
9
# for insight into build numbers and IntelliJ Platform versions.
Original file line number Diff line number Diff line change 10
10
11
11
public class ExportAction extends SequenceAction {
12
12
13
- private Display _display = null ;
13
+ private final Display _display ;
14
14
15
15
public ExportAction (Display display ) {
16
16
super ("ExportAction" , true );
@@ -30,7 +30,7 @@ public void actionPerformed(ActionEvent e) {
30
30
31
31
private void export (File file ) {
32
32
try {
33
- _display .saveImageToFile (file );
33
+ _display .saveImageToSvgFile (file );
34
34
} catch (IOException e ) {
35
35
e .printStackTrace ();
36
36
}
You can’t perform that action at this time.
0 commit comments