summaryrefslogtreecommitdiff
path: root/utils/themeeditor
diff options
context:
space:
mode:
authorRobert Bieber <robby@bieberphoto.com>2010-06-07 08:05:52 +0000
committerRobert Bieber <robby@bieberphoto.com>2010-06-07 08:05:52 +0000
commit40e73255a9469c0f1509122d7dd20a10df340a5b (patch)
tree959b02523a3f98169f819fa8b0fe57074dfc5131 /utils/themeeditor
parentffc1afc30dc4343a3b1630c6b4ebd25570ac8d2d (diff)
Theme Editor: Made text editor scroll horizontally
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26651 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'utils/themeeditor')
-rw-r--r--utils/themeeditor/skindocument.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/themeeditor/skindocument.cpp b/utils/themeeditor/skindocument.cpp
index 730d03a0a6..80a4fa330d 100644
--- a/utils/themeeditor/skindocument.cpp
+++ b/utils/themeeditor/skindocument.cpp
@@ -110,6 +110,7 @@ void SkinDocument::setupUI()
/* Setting up the text edit */
layout = new QHBoxLayout;
editor = new QPlainTextEdit(this);
+ editor->setLineWrapMode(QPlainTextEdit::NoWrap);
layout->addWidget(editor);
setLayout(layout);