Gentoo Archives: gentoo-commits

From: "Andreas HAttel (dilfridge)" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in kde-base/konsole/files: konsole-4.7.4-ypos.patch
Date: Wed, 28 Dec 2011 17:26:54
Message-Id: 20111228172644.126C32004C@flycatcher.gentoo.org
1 dilfridge 11/12/28 17:26:44
2
3 Added: konsole-4.7.4-ypos.patch
4 Log:
5 Fix rendering with qt-4.8, bug 396259
6
7 (Portage version: 2.1.10.41/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 kde-base/konsole/files/konsole-4.7.4-ypos.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/konsole/files/konsole-4.7.4-ypos.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/konsole/files/konsole-4.7.4-ypos.patch?rev=1.1&content-type=text/plain
14
15 Index: konsole-4.7.4-ypos.patch
16 ===================================================================
17 diff -Naur a/src/TerminalDisplay.cpp b/src/TerminalDisplay.cpp
18 --- a/src/TerminalDisplay.cpp 2011-10-28 10:44:03.000000000 +0300
19 +++ b/src/TerminalDisplay.cpp 2011-12-28 02:32:02.686667954 +0200
20 @@ -718,7 +718,7 @@
21 if (_bidiEnabled)
22 painter.drawText(rect,0,text);
23 else
24 - painter.drawText(rect,0,LTR_OVERRIDE_CHAR+text);
25 + painter.drawText(rect,Qt::AlignBottom,LTR_OVERRIDE_CHAR+text);
26 }
27 }