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

cblu cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:51:43 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 33e35c03f0c8b042fbfcf046d420647ccfe05dd7
Author: cblu <cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Oct 21 06:11:08 2002 +0000

    	Fixed: 3025847 - Can't use any menu command keys after clicking on a plugin
    
    	Don't give plug-ins command-modified keys anymore because the ability wasn't worth the annoyance. If only plug-ins truthfully responded t  events! Anyway, filed 3080103 so that I can look into a way to make this work for everybody.
    
            * Plugins.subproj/WebBaseNetscapePluginView.m:
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2391 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 17eb3eb..b2b540d 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,5 +1,13 @@
 2002-10-20  Chris Blumenberg  <cblu at apple.com>
 
+	Fixed: 3025847 - Can't use any menu command keys after clicking on a plugin
+
+	Don't give plug-ins command-modified keys anymore because the ability wasn't worth the annoyance. If only plug-ins truthfully responded t  events! Anyway, filed 3080103 so that I can look into a way to make this work for everybody.
+
+        * Plugins.subproj/WebBaseNetscapePluginView.m:
+
+2002-10-20  Chris Blumenberg  <cblu at apple.com>
+
 	Fixed: 3025868 - Plugin context menu disappears then reappears if you click off of it
 
 	Also fixed some rare dragging weirdness in WebHTMLView. If you attempted to drag a plug-in after dragging an image, the image would drag again.
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index 17eb3eb..b2b540d 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,5 +1,13 @@
 2002-10-20  Chris Blumenberg  <cblu at apple.com>
 
+	Fixed: 3025847 - Can't use any menu command keys after clicking on a plugin
+
+	Don't give plug-ins command-modified keys anymore because the ability wasn't worth the annoyance. If only plug-ins truthfully responded t  events! Anyway, filed 3080103 so that I can look into a way to make this work for everybody.
+
+        * Plugins.subproj/WebBaseNetscapePluginView.m:
+
+2002-10-20  Chris Blumenberg  <cblu at apple.com>
+
 	Fixed: 3025868 - Plugin context menu disappears then reappears if you click off of it
 
 	Also fixed some rare dragging weirdness in WebHTMLView. If you attempted to drag a plug-in after dragging an image, the image would drag again.
diff --git a/WebKit/Plugins.subproj/WebBaseNetscapePluginView.m b/WebKit/Plugins.subproj/WebBaseNetscapePluginView.m
index 3394277..7b546d7 100644
--- a/WebKit/Plugins.subproj/WebBaseNetscapePluginView.m
+++ b/WebKit/Plugins.subproj/WebBaseNetscapePluginView.m
@@ -313,6 +313,9 @@
     return NO;
 }
 
+// Stop overriding performKeyEquivalent because the gain is not worth the frustation.
+// Need to find a better way to pass command-modified keys to plug-ins. 3080103
+#if 0
 // Must subclass performKeyEquivalent: for command-modified keys to work.
 - (BOOL)performKeyEquivalent:(NSEvent *)theEvent
 {
@@ -336,6 +339,7 @@
     
     return acceptedEvent;
 }
+#endif
 
 #pragma mark WEB_NETSCAPE_PLUGIN
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list