Skip to content

Commit

Permalink
Fixed Can't close any tabs once a binary file is opened
Browse files Browse the repository at this point in the history
  • Loading branch information
hajdam committed Apr 10, 2021
1 parent 247059e commit 758778f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
4 changes: 4 additions & 0 deletions changes.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
0.2.4
- Added String field in values panel
- Fixed Can't close any tabs once a binary file is opened (issue #35)

0.2.3 (2020-07-30)
- Fixed debugger array support for PHP
- Added binary file type (issue #30)
Expand Down
4 changes: 2 additions & 2 deletions resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ Sources: <a href="https://github.com/exbin/bined-intellij-plugin">https://github
]]></description>

<change-notes><![CDATA[
<ul><li>Fixed debugger array support for PHP</li>
<li>Added binary file type</li>
<ul><li>Added String field in values panel</li>
<li>Fixed Can't close any tabs once a binary file is opened</li>
</ul>
]]>
</change-notes>
Expand Down
3 changes: 3 additions & 0 deletions src/org/exbin/bined/intellij/BinEdFileEditor.java
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,9 @@ public BinEdVirtualFile getVirtualFile() {
return virtualFile;
}

@Override
public VirtualFile getFile() { return virtualFile; }

public Project getProject() {
return project;
}
Expand Down

0 comments on commit 758778f

Please sign in to comment.