Skip to content

Commit

Permalink
Enable editing tags when multiple books are selected that are not in …
Browse files Browse the repository at this point in the history
…the library.

close #76
  • Loading branch information
maforget committed May 18, 2024
1 parent 927a7a1 commit 0d03dd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ComicRack/Dialogs/MultipleComicBooksDialog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public MultipleComicBooksDialog(IEnumerable<ComicBook> books)
this.books = books.ToArray();
Text = StringUtility.Format(Text, books.Count());
labelOpenedTime.Visible = (dtpOpenedTime.Visible = (dtpOpenedTime.Enabled = (labelPagesAsTextSimple.Visible = (txPagesAsTextSimple.Visible = (txPagesAsTextSimple.Enabled = !books.Any((ComicBook cb) => cb.IsLinked))))));
txCommunityRating.Enabled = (txRating.Enabled = (txTags.Enabled = (cbEnableProposed.Enabled = (cbSeriesComplete.Enabled = books.All((ComicBook cb) => cb.IsInContainer)))));
txCommunityRating.Enabled = txRating.Enabled = cbEnableProposed.Enabled = cbSeriesComplete.Enabled = books.All((ComicBook cb) => cb.IsInContainer);
SpinButton.AddUpDown(txVolume);
SpinButton.AddUpDown(txCount, 1, 0);
SpinButton.AddUpDown(txNumber);
Expand Down

0 comments on commit 0d03dd7

Please sign in to comment.