Changeset 17436 in webkit


Ignore:
Timestamp:
Oct 30, 2006 8:27:12 AM (17 years ago)
Author:
thatcher
Message:

Reviewed by Tim H.

Fix for http://bugs.webkit.org/show_bug.cgi?id=10468
[Drosera] The Console toolbar button should bring the console window to the front.

The console now gets focus when its activated but already open. Command + L also
now activates/focuses the console.

  • Drosera/English.lproj/MainMenu.nib/classes.nib:
  • Drosera/English.lproj/MainMenu.nib/info.nib:
  • Drosera/English.lproj/MainMenu.nib/keyedobjects.nib:
  • Drosera/debugger.js:
Location:
trunk/WebKitTools
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r17432 r17436  
     12006-10-30  Matt Lilek  <pewtermoose@gmail.com>
     2
     3        Reviewed by Tim H.
     4
     5        Fix for http://bugs.webkit.org/show_bug.cgi?id=10468
     6        [Drosera] The Console toolbar button should bring the console window to the front.
     7
     8        The console now gets focus when its activated but already open.  Command + L also
     9        now activates/focuses the console.
     10
     11        * Drosera/English.lproj/MainMenu.nib/classes.nib:
     12        * Drosera/English.lproj/MainMenu.nib/info.nib:
     13        * Drosera/English.lproj/MainMenu.nib/keyedobjects.nib:
     14        * Drosera/debugger.js:
     15
    1162006-10-29  Darin Adler  <darin@apple.com>
    217
  • trunk/WebKitTools/Drosera/English.lproj/MainMenu.nib/classes.nib

    r15145 r17436  
    99        },
    1010        {
    11             ACTIONS = {myAction = id; stepInto = id; stepOut = id; stepOver = id; };
     11            ACTIONS = {myAction = id; showConsole = id; stepInto = id; stepOut = id; stepOver = id; };
    1212            CLASS = FirstResponder;
    1313            LANGUAGE = ObjC;
  • trunk/WebKitTools/Drosera/English.lproj/MainMenu.nib/info.nib

    r15145 r17436  
    44<dict>
    55        <key>IBDocumentLocation</key>
    6         <string>91 65 356 240 0 0 1344 986 </string>
     6        <string>100 56 356 240 0 0 1440 878 </string>
    77        <key>IBEditorPositions</key>
    88        <dict>
    99                <key>29</key>
    10                 <string>145 562 343 44 0 0 1344 986 </string>
     10                <string>159 498 343 44 0 0 1440 878 </string>
    1111        </dict>
    1212        <key>IBFramework Version</key>
    13         <string>446.1</string>
     13        <string>452.0</string>
    1414        <key>IBOpenObjects</key>
    1515        <array>
     
    1818        </array>
    1919        <key>IBSystem Version</key>
    20         <string>8J2135</string>
     20        <string>9A283</string>
    2121</dict>
    2222</plist>
  • trunk/WebKitTools/Drosera/debugger.js

    r17250 r17436  
    12591259    if (!consoleWindow)
    12601260        consoleWindow = window.open("console.html", "console", "top=200, left=200, width=500, height=300, toolbar=yes, resizable=yes");
    1261 }
     1261    else
     1262        consoleWindow.focus();
     1263}
Note: See TracChangeset for help on using the changeset viewer.