Changeset 17590 in webkit


Ignore:
Timestamp:
Nov 3, 2006 10:14:57 PM (17 years ago)
Author:
bdash
Message:

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
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r17583 r17590  
     12006-11-03  David Smith  <catfish.man@gmail.com>
     2
     3        Reviewed by Tim H.
     4
     5        Fixes: http://bugs.webkit.org/show_bug.cgi?id=11510
     6        Bug 11510: [Drosera] Doubleclicking the attach table should attach to the clicked item.
     7
     8        * Drosera/DebuggerApplication.m:
     9        (-[DebuggerApplication showAttachPanel:]): Set the doubleAction for the table view
     10
    1112006-11-03  Vladimir Olexa  <vladimir.olexa@gmail.com>
    212
  • trunk/WebKitTools/Drosera/DebuggerApplication.m

    r15388 r17590  
    9292        [attachWindow center];
    9393    [attachTable reloadData];
     94    [attachTable setTarget:self];
     95    [attachTable setDoubleAction:@selector(attach:)];
    9496    [attachWindow makeKeyAndOrderFront:sender];
    9597}
Note: See TracChangeset for help on using the changeset viewer.