summaryrefslogtreecommitdiffstats
path: root/opensuse/core/qt3/patches/3.5.13.2/0055-qtextedit_zoom.patch
diff options
context:
space:
mode:
Diffstat (limited to 'opensuse/core/qt3/patches/3.5.13.2/0055-qtextedit_zoom.patch')
-rw-r--r--opensuse/core/qt3/patches/3.5.13.2/0055-qtextedit_zoom.patch39
1 files changed, 39 insertions, 0 deletions
diff --git a/opensuse/core/qt3/patches/3.5.13.2/0055-qtextedit_zoom.patch b/opensuse/core/qt3/patches/3.5.13.2/0055-qtextedit_zoom.patch
new file mode 100644
index 000000000..38cdaa8a7
--- /dev/null
+++ b/opensuse/core/qt3/patches/3.5.13.2/0055-qtextedit_zoom.patch
@@ -0,0 +1,39 @@
+qt-bugs@ issue :
+bugs.kde.org number :
+applied: yes
+author: Waldo Bastian <bastian@kde.org>
+
+QTextEdit::zoomIn /QTextEdit::zoomOut does not work if the original
+font had its size specified in pixels instead of points.
+pointSize() returns 0 in such case.
+
+Index: widgets/qtextedit.cpp
+================================================================================
+--- src/widgets/qtextedit.cpp
++++ src/widgets/qtextedit.cpp
+@@ -5774,7 +5774,11 @@
+ void QTextEdit::zoomIn( int range )
+ {
+ QFont f( QScrollView::font() );
+- f.setPointSize( QFontInfo(f).pointSize() + range );
++ QFontInfo fi(f);
++ if (fi.pointSize() <= 0)
++ f.setPixelSize( fi.pixelSize() + range );
++ else
++ f.setPointSize( fi.pointSize() + range );
+ setFont( f );
+ }
+
+@@ -5789,7 +5793,11 @@
+ void QTextEdit::zoomOut( int range )
+ {
+ QFont f( QScrollView::font() );
+- f.setPointSize( QMAX( 1, QFontInfo(f).pointSize() - range ) );
++ QFontInfo fi(f);
++ if (fi.pointSize() <= 0)
++ f.setPixelSize( QMAX( 1, fi.pixelSize() - range ) );
++ else
++ f.setPointSize( QMAX( 1, fi.pointSize() - range ) );
+ setFont( f );
+ }
+