Skip to content

Commit

Permalink
About dialog fix
Browse files Browse the repository at this point in the history
  • Loading branch information
krasa committed Jan 23, 2021
1 parent 14423f2 commit 724b118
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<idea-plugin version="2">
<name>PlantUML integration</name>
<version>3.6.1</version>
<version>3.6.2</version>
<vendor url="https://github.com/esteinberg/plantuml4idea/">Eugene Steinberg</vendor>
<!-- IJ 12+ -->
<idea-version since-build="193"/>
Expand Down
10 changes: 8 additions & 2 deletions src/org/plantuml/idea/toolwindow/PlantUmlImageLabel.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,15 +65,21 @@ public AnAction[] getChildren(@Nullable AnActionEvent e) {
});

private static Logger logger = Logger.getInstance(PlantUmlImageLabel.class);
private final Project project;
private final RenderResult renderResult;
private Project project;
private RenderResult renderResult;
private RenderRequest renderRequest;
private ImageItem imageWithData;
private Image originalImage;

private FileEditorManager fileEditorManager;
private LocalFileSystem localFileSystem;

/**
* Method AboutDialog.$$$setupUI$$$() contains an invokespecial instruction referencing an unresolved constructor PlantUmlImageLabel.<init>().
*/
public PlantUmlImageLabel() {
}

public PlantUmlImageLabel(Project project, JPanel parent, ImageItem imageWithData, int i, RenderRequest renderRequest, RenderResult renderResult, FileEditorManager fileEditorManager, LocalFileSystem localFileSystem) {
this.imageWithData = imageWithData;
this.project = project;
Expand Down

0 comments on commit 724b118

Please sign in to comment.