Reviewed by Tim H.
Fixes: http://bugs.webkit.org/show_bug.cgi?id=11510
Bug 11510: [Drosera] Doubleclicking the attach table should attach to the clicked item.
* Drosera/DebuggerApplication.m:
(-[DebuggerApplication showAttachPanel:]): Set the doubleAction for the table view
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@17590
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2006-11-03 David Smith <catfish.man@gmail.com>
+
+ Reviewed by Tim H.
+
+ Fixes: http://bugs.webkit.org/show_bug.cgi?id=11510
+ Bug 11510: [Drosera] Doubleclicking the attach table should attach to the clicked item.
+
+ * Drosera/DebuggerApplication.m:
+ (-[DebuggerApplication showAttachPanel:]): Set the doubleAction for the table view
+
2006-11-03 Vladimir Olexa <vladimir.olexa@gmail.com>
Reviewed by Tim H.
if (![attachWindow isVisible])
[attachWindow center];
[attachTable reloadData];
+ [attachTable setTarget:self];
+ [attachTable setDoubleAction:@selector(attach:)];
[attachWindow makeKeyAndOrderFront:sender];
}