This commit is contained in:
Andrew Lalis 2023-07-09 20:19:30 -04:00
parent 605d050783
commit 2a9edf125e
2 changed files with 5 additions and 5 deletions

View File

@ -3,8 +3,6 @@ package nl.andrewlalis.blockbookbinder.control.source;
import lombok.Getter; import lombok.Getter;
import lombok.Setter; import lombok.Setter;
import nl.andrewlalis.blockbookbinder.model.build.BookBuilder; import nl.andrewlalis.blockbookbinder.model.build.BookBuilder;
import nl.andrewlalis.blockbookbinder.model.build.BookBuilder2;
import nl.andrewlalis.blockbookbinder.util.ApplicationProperties;
import nl.andrewlalis.blockbookbinder.view.SourceTextPanel; import nl.andrewlalis.blockbookbinder.view.SourceTextPanel;
import nl.andrewlalis.blockbookbinder.view.book.BookPreviewPanel; import nl.andrewlalis.blockbookbinder.view.book.BookPreviewPanel;

View File

@ -198,9 +198,11 @@ public class ExportToBookDialog extends JDialog {
) { ) {
JOptionPane.showMessageDialog( JOptionPane.showMessageDialog(
this, this,
"Invalid page range. Please follow the rules below:\n" + """
"1. First page must be lower or equal to the last page.\n" + Invalid page range. Please follow the rules below:
"2. Number of pages to export cannot exceed 100.\n", 1. First page must be lower or equal to the last page.
2. Number of pages to export cannot exceed 100.
""",
"Invalid Page Range", "Invalid Page Range",
JOptionPane.WARNING_MESSAGE JOptionPane.WARNING_MESSAGE
); );