[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

sullivan sullivan at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:59:15 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 9b86db39b6b46b21ea58c172877b316d5dcbe822
Author: sullivan <sullivan at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Oct 2 00:07:43 2003 +0000

    	- fixed 3441372: REGRESSION (107+): Plain text document is
    	initially drawn with proportional font
    
            Reviewed by Hyatt
    
            * WebView.subproj/WebTextView.m:
            (-[WebTextView setDataSource:]):
    	Changed a != to an ==
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@5111 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 7de22b8..edd91dc 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,14 @@
+2003-10-01  John Sullivan  <sullivan at apple.com>
+
+	- fixed 3441372: REGRESSION (107+): Plain text document is 
+	initially drawn with proportional font
+
+        Reviewed by Hyatt
+
+        * WebView.subproj/WebTextView.m:
+        (-[WebTextView setDataSource:]):
+	Changed a != to an ==
+
 2003-10-01  Richard Williamson   <rjw at apple.com>
 
 	Fixed 3438441.  If a load is triggered by a onload handling, don't add an entry for it into the b/f or history.  The new Google ads use this technique.
diff --git a/WebKit/WebView.subproj/WebTextView.m b/WebKit/WebView.subproj/WebTextView.m
index fde91e0..14182a5 100644
--- a/WebKit/WebView.subproj/WebTextView.m
+++ b/WebKit/WebView.subproj/WebTextView.m
@@ -123,7 +123,7 @@
     [self _updateTextSizeMultiplier];
     // If the multiplier didn't change, we still need to update the fixed-width font.
     // If the multiplier did change, this was already handled.
-    if (_textSizeMultiplier != oldMultiplier && ![self isRichText]) {
+    if (_textSizeMultiplier == oldMultiplier && ![self isRichText]) {
         [self setFixedWidthFont];
     }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list