gui: fix internal viewer editable
authorNiki Roo <niki@nikiroo.be>
Tue, 26 Mar 2019 07:37:27 +0000 (08:37 +0100)
committerNiki Roo <niki@nikiroo.be>
Tue, 26 Mar 2019 07:37:27 +0000 (08:37 +0100)
src/be/nikiroo/fanfix/reader/ui/GuiReaderViewerPanel.java

index 4a4252b2a47fb4fbb959df062a3fa404730ad242..08a9c9c34e10901fcb5bce3644c9057b0eb991b4 100644 (file)
@@ -59,6 +59,7 @@ public class GuiReaderViewerPanel extends JPanel {
                this.imageDocument = story.getMeta().isImageDocument();
 
                this.text = new JEditorPane("text/html", "");
+               text.setEditable(false);
                text.setAlignmentY(TOP_ALIGNMENT);
                htmlOutput = new GuiReaderViewerTextOutput();