summaryrefslogtreecommitdiff
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
parentffc1afc30dc4343a3b1630c6b4ebd25570ac8d2d (diff)
downloadrockbox-40e73255a9469c0f1509122d7dd20a10df340a5b.tar.gz
rockbox-40e73255a9469c0f1509122d7dd20a10df340a5b.zip
Theme Editor: Made text editor scroll horizontally
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26651 a1c6a512-1295-4272-9138-f99709370657
-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()
110 /* Setting up the text edit */ 110 /* Setting up the text edit */
111 layout = new QHBoxLayout; 111 layout = new QHBoxLayout;
112 editor = new QPlainTextEdit(this); 112 editor = new QPlainTextEdit(this);
113 editor->setLineWrapMode(QPlainTextEdit::NoWrap);
113 layout->addWidget(editor); 114 layout->addWidget(editor);
114 115
115 setLayout(layout); 116 setLayout(layout);