4343import de .doubleslash .keeptime .view .worktable .ProjectTableRow ;
4444import de .doubleslash .keeptime .view .worktable .TableRow ;
4545import de .doubleslash .keeptime .view .worktable .WorkTableRow ;
46- import de .jensd .fx .glyphs .fontawesome .FontAwesomeIcon ;
47- import de .jensd .fx .glyphs .fontawesome .FontAwesomeIconView ;
4846import javafx .beans .property .ReadOnlyObjectWrapper ;
4947import javafx .event .ActionEvent ;
5048import javafx .event .EventHandler ;
@@ -282,7 +280,7 @@ public void updateItem(final LocalDate item, final boolean empty) {
282280 }
283281
284282 private Button createDeleteWorkButton (final Work w ) {
285- final Button deleteButton = new Button ("" , new FontAwesomeIconView ( FontAwesomeIcon . TRASH ) );
283+ final Button deleteButton = new Button ("" );
286284 deleteButton .setOnAction (e -> {
287285 LOG .info ("Delete work clicked." );
288286 final Alert alert = new Alert (AlertType .CONFIRMATION );
@@ -304,7 +302,7 @@ private Button createDeleteWorkButton(final Work w) {
304302 }
305303
306304 private Button createEditWorkButton (final Work work ) {
307- final Button editButton = new Button ("" , new FontAwesomeIconView ( FontAwesomeIcon . PENCIL ) );
305+ final Button editButton = new Button ("" );
308306 editButton .setOnAction (e -> {
309307 LOG .info ("Edit work clicked." );
310308 final Dialog <Work > dialog = setupEditWorkDialog (work );
@@ -361,7 +359,7 @@ private GridPane setUpEditWorkGridPane(final Work work, final Dialog<Work> dialo
361359 }
362360
363361 private Button createCopyProjectButton (final List <Work > projectWork ) {
364- final Button copyButton = new Button ("" , new FontAwesomeIconView ( FontAwesomeIcon . CLIPBOARD ) );
362+ final Button copyButton = new Button ("" );
365363 final EventHandler <ActionEvent > eventListener = actionEvent -> {
366364 LOG .debug ("Copy to Clipboard clicked." );
367365 final ProjectReport pr = new ProjectReport (projectWork .size ());
@@ -381,7 +379,7 @@ private Button createCopyProjectButton(final List<Work> projectWork) {
381379 }
382380
383381 private Node createCopyWorkButton (final Work w ) {
384- final Button copyButton = new Button ("" , new FontAwesomeIconView ( FontAwesomeIcon . CLIPBOARD ) );
382+ final Button copyButton = new Button ("" );
385383 final EventHandler <ActionEvent > eventListener = actionEvent -> {
386384 LOG .debug ("Copy to Clipboard clicked." );
387385 final Clipboard clipboard = Clipboard .getSystemClipboard ();
0 commit comments