Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion jabgui/src/main/java/org/jabref/gui/frame/JabRefFrame.java
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ private void initBindings() {

// Hide tab bar
stateManager.getOpenDatabases().addListener((ListChangeListener<BibDatabaseContext>) _ -> updateTabBarVisible());
EasyBind.subscribe(preferences.getWorkspacePreferences().hideTabBarProperty(), _ -> updateTabBarVisible());
tabbedPane.getTabs().addListener((ListChangeListener<Tab>) _ -> updateTabBarVisible());
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The patch does not address the special instruction to ensure that the pull request title contains a short title of the issue fixed, rather than just 'Fix issue xyz'.


stateManager.canGoBackProperty().bind(
stateManager.activeTabProperty().flatMap(
Expand Down
Loading