diff options
author | Robert Bieber <robby@bieberphoto.com> | 2010-06-07 08:05:52 +0000 |
---|---|---|
committer | Robert Bieber <robby@bieberphoto.com> | 2010-06-07 08:05:52 +0000 |
commit | 40e73255a9469c0f1509122d7dd20a10df340a5b (patch) | |
tree | 959b02523a3f98169f819fa8b0fe57074dfc5131 /utils/themeeditor | |
parent | ffc1afc30dc4343a3b1630c6b4ebd25570ac8d2d (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.cpp | 1 |
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); |