[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677
darin
darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:56:47 UTC 2009
The following commit has been merged in the debian/unstable branch:
commit 775e2eb0ffe882660e885c959b3961bc8178991c
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Sun Sep 21 03:59:03 2003 +0000
Reviewed by Dave.
- fixed 3328481 -- selection in select element list box does not scroll into view when set programatically
* kwq/KWQListBox.mm: (QListBox::setSelected): Scroll newly-selected item into view.
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@5024 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 568d26a..bcf40d3 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -2,6 +2,14 @@
Reviewed by Dave.
+ - fixed 3328481 -- selection in select element list box does not scroll into view when set programatically
+
+ * kwq/KWQListBox.mm: (QListBox::setSelected): Scroll newly-selected item into view.
+
+2003-09-20 Darin Adler <darin at apple.com>
+
+ Reviewed by Dave.
+
- fixed 3429384 -- REGRESSION (89-90): nil-deref in KHTMLPart::write() (cheshiremotorcyclesalvage.com)
* khtml/khtml_part.cpp: (KHTMLPart::write): Add a nil check.
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 568d26a..bcf40d3 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -2,6 +2,14 @@
Reviewed by Dave.
+ - fixed 3328481 -- selection in select element list box does not scroll into view when set programatically
+
+ * kwq/KWQListBox.mm: (QListBox::setSelected): Scroll newly-selected item into view.
+
+2003-09-20 Darin Adler <darin at apple.com>
+
+ Reviewed by Dave.
+
- fixed 3429384 -- REGRESSION (89-90): nil-deref in KHTMLPart::write() (cheshiremotorcyclesalvage.com)
* khtml/khtml_part.cpp: (KHTMLPart::write): Add a nil check.
diff --git a/WebCore/kwq/KWQListBox.mm b/WebCore/kwq/KWQListBox.mm
index 2eb38f4..e88464f 100644
--- a/WebCore/kwq/KWQListBox.mm
+++ b/WebCore/kwq/KWQListBox.mm
@@ -177,6 +177,7 @@ void QListBox::setSelected(int index, bool selectIt)
_changingSelection = true;
if (selectIt) {
[tableView selectRow:index byExtendingSelection:[tableView allowsMultipleSelection]];
+ [tableView scrollRowToVisible:index];
} else {
[tableView deselectRow:index];
}
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list