Skip to content

Commit

Permalink
Merge pull request #9728 from JabRef/groups_panel_scroll
Browse files Browse the repository at this point in the history
Added scrolling in GroupsPanel when dragging a group
  • Loading branch information
Siedlerchr authored Apr 4, 2023
2 parents d7cf448 + 831ff0d commit e9a0bf5
Show file tree
Hide file tree
Showing 5 changed files with 518 additions and 252 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ Note that this project **does not** adhere to [Semantic Versioning](http://semve
- We added "Attach file from URL" to right-click context menu to download and store a file with the reference library. [#9646](https://github.com/JabRef/jabref/issues/9646)
- We enabled updating an existing entry with data from InspireHEP. [#9351](https://github.com/JabRef/jabref/issues/9351)
- We added a fetcher for the Bibliotheksverbund Bayern (experimental). [#9641](https://github.com/JabRef/jabref/pull/9641)
- We enabled scrolling in the groups list when dragging a group on another group. [#2869](https://github.com/JabRef/jabref/pull/2869)



Expand Down
12 changes: 11 additions & 1 deletion src/main/java/org/jabref/gui/actions/StandardActions.java
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,17 @@ public enum StandardActions implements Action {
EDIT_LIST(Localization.lang("Edit"), IconTheme.JabRefIcons.EDIT),
VIEW_LIST(Localization.lang("View"), IconTheme.JabRefIcons.FILE),
REMOVE_LIST(Localization.lang("Remove"), IconTheme.JabRefIcons.REMOVE),
RELOAD_LIST(Localization.lang("Reload"), IconTheme.JabRefIcons.REFRESH);
RELOAD_LIST(Localization.lang("Reload"), IconTheme.JabRefIcons.REFRESH),

GROUP_REMOVE(Localization.lang("Remove group")),
GROUP_REMOVE_KEEP_SUBGROUPS(Localization.lang("Keep subgroups")),
GROUP_REMOVE_WITH_SUBGROUPS(Localization.lang("Also remove subgroups")),
GROUP_EDIT(Localization.lang("Edit group")),
GROUP_SUBGROUP_ADD(Localization.lang("Add subgroup")),
GROUP_SUBGROUP_REMOVE(Localization.lang("Remove subgroups")),
GROUP_SUBGROUP_SORT(Localization.lang("Sort subgroups A-Z")),
GROUP_ENTRIES_ADD(Localization.lang("Add selected entries to this group")),
GROUP_ENTRIES_REMOVE(Localization.lang("Remove selected entries from this group"));

private final String text;
private final String description;
Expand Down
Loading

0 comments on commit e9a0bf5

Please sign in to comment.