Skip to content

Commit

Permalink
feat(done): Add "done" property to Card copy constructor
Browse files Browse the repository at this point in the history
Refs: #1556

Signed-off-by: Stefan Niedermann <info@niedermann.it>
  • Loading branch information
stefan-niedermann committed Jan 14, 2024
1 parent 52ce22d commit 2694c8e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ public Card(Card card) {
this.order = card.getOrder();
this.archived = card.isArchived();
this.dueDate = card.getDueDate();
this.done = card.getDone();
this.notified = card.isNotified();
this.overdue = card.getOverdue();
this.commentsUnread = card.getCommentsUnread();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ private void applyTheme(@ColorInt int color) {
binding.descriptionEditor.setSearchColor(color);
binding.descriptionViewer.setSearchColor(color);

utils.material.colorMaterialButtonPrimaryFilled(binding.markAsDone);
utils.material.colorMaterialButtonPrimaryTonal(binding.markAsDone);

// TODO apply correct branding on the BrandedDatePicker
}
Expand Down

0 comments on commit 2694c8e

Please sign in to comment.