Skip to content

Commit

Permalink
Minor fixes (JabRef#10418)
Browse files Browse the repository at this point in the history
  • Loading branch information
ExrosZ-Alt committed Oct 17, 2024
1 parent 46b4061 commit 9af5c45
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@



<CheckBox fx:id="enableViewTracking" text="%Enable user behaviour analysis'"/>
<CheckBox fx:id="enableViewTracking" text="%Enable user behaviour analysis"/>
<CheckBox fx:id="trackViews" text="%Track entry views"
disable="${!enableViewTracking.selected}">
<padding>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public void storeSettings() {
ownerPreferences.setOverwriteOwner(markOwnerOverwriteProperty.getValue());

timestampPreferences.setAddCreationDate(addCreationDateProperty.getValue());
timestampPreferences.setAddModificationDate(addModificationDateProperty.getValue());}
timestampPreferences.setAddModificationDate(addModificationDateProperty.getValue()); }

public StringProperty keywordSeparatorProperty() {
return keywordSeparatorProperty;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/jabref/model/groups/PopularityGroup.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import static org.jabref.gui.desktop.os.NativeDesktop.getOtherDataDir;

/**
* This group contains entries that have been viewed more than once.
* This group contains popular entries that have been viewed more than once.
* {@link StandardField#GROUPS}.
*/
public class PopularityGroup extends AbstractGroup {
Expand Down

0 comments on commit 9af5c45

Please sign in to comment.