Skip to content

Commit

Permalink
Fixes #1554: JabRefFrame is set as owner for ImportInspectionDialog
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasgeiger committed Aug 2, 2016
1 parent f5553a7 commit e1e136c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ We refer to [GitHub issues](https://github.com/JabRef/jabref/issues) by using `#
- Fixed [#1321](https://github.com/JabRef/jabref/issues/1321): LaTeX commands in fields not displayed in the list of references
- Fixed [#1639](https://github.com/JabRef/jabref/issues/1639): Google Scholar fetching works again.
- Date fields in the BibLatex standard are now always formatted in the correct way, independent of the preferences
- Fixed [#1554]: Import dialog is no longer hidden behind main window

### Removed
- It is not longer possible to choose to convert HTML sub- and superscripts to equations
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/net/sf/jabref/gui/ImportInspectionDialog.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.EventQueue;
import java.awt.Rectangle;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
Expand Down Expand Up @@ -196,6 +197,7 @@ public class ImportInspectionDialog extends JDialog implements ImportInspector,
* @param panel
*/
public ImportInspectionDialog(JabRefFrame frame, BasePanel panel, String undoName, boolean newDatabase) {
super(frame);
this.frame = frame;
this.panel = panel;
this.bibDatabaseContext = (panel == null) ? null : panel.getBibDatabaseContext();
Expand Down

0 comments on commit e1e136c

Please sign in to comment.