diff --git a/src/QtHtmlReader.cpp b/src/QtHtmlReader.cpp
index d73554cb..0d71c658 100644
--- a/src/QtHtmlReader.cpp
+++ b/src/QtHtmlReader.cpp
@@ -76,6 +76,11 @@ void QtHtmlReader::Open()
//draw text
QTextDocument text_document;
+
+ //disable redo/undo stack as not needed
+ text_document.setUndoRedoEnabled(false);
+
+ //create the HTML/CSS document
text_document.setTextWidth(width);
text_document.setDefaultStyleSheet(css.c_str());
text_document.setHtml(html.c_str());