Skip to content

Commit

Permalink
Add minimal height for entry editor
Browse files Browse the repository at this point in the history
Fixes #4279.
  • Loading branch information
tobiasdiez committed Aug 22, 2018
1 parent 835bb47 commit 5a53e07
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ We refer to [GitHub issues](https://github.com/JabRef/jabref/issues) by using `#
- Files without a defined external file type are now directly opened with the default application of the operating system
- We streamlined the process to rename and move files by removing the confirmation dialogs.
- We removed the redundant new lines of markings and wrapped the summary in the File annotation tab. [#3823](https://github.com/JabRef/jabref/issues/3823)
- We add auto url formatting when user paste link to URL field in Entry editor [#254](https://github.com/koppor/jabref/issues/254)

- We add auto url formatting when user paste link to URL field in entry editor. [#254](https://github.com/koppor/jabref/issues/254)
- We added a minimal height for the entry editor so that it can no longer be hidden by accident. [#4279](https://github.com/JabRef/jabref/issues/4279)



Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/jabref/gui/entryeditor/EntryEditor.fxml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<?import javafx.scene.layout.VBox?>
<?import org.jabref.gui.icon.JabRefIconView?>
<fx:root xmlns:fx="http://javafx.com/fxml/1" type="BorderPane" xmlns="http://javafx.com/javafx/8.0.112"
fx:controller="org.jabref.gui.entryeditor.EntryEditor">
fx:controller="org.jabref.gui.entryeditor.EntryEditor" minHeight="50">
<left>
<ToolBar orientation="VERTICAL">
<Button styleClass="icon-button,narrow" onAction="#close">
Expand Down

0 comments on commit 5a53e07

Please sign in to comment.