Skip to content

Commit

Permalink
Various changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
dlemmermann committed May 30, 2024
1 parent 13fb399 commit da89c65
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ public Student fromString(String string) {

Preferences preferences = Preferences.userNodeForPackage(HistoryManagerApp.class);

PreferencesHistoryManager<Student> historyManager = new PreferencesHistoryManager<>(preferences, "list", converter);
PreferencesHistoryManager<Student> historyManager = new PreferencesHistoryManager<>(preferences, "list-values", converter);

listView.setOnMouseClicked(e -> {
if (e.getClickCount() == 2) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
import org.kordamp.ikonli.javafx.FontIcon;
import org.kordamp.ikonli.materialdesign.MaterialDesign;

import java.util.Objects;
import java.util.function.BiConsumer;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
.history-popup > .content-pane > .history-list-view > .virtual-flow > .clipped-container > .sheet > .list-cell {
/* No alternate highlighting */
-fx-background: -fx-control-inner-background;
-fx-padding: 2px;
-fx-padding: 2px 5px;
}

.history-popup > .content-pane > .history-list-view > .virtual-flow > .clipped-container > .sheet > .list-cell:filled:hover {
Expand Down

0 comments on commit da89c65

Please sign in to comment.