| Summary: | Debug "F" keys not enabled properly on new editor | ||
|---|---|---|---|
| Product: | [Eclipse Project] Platform | Reporter: | Darin Swanson <Darin_Swanson> |
| Component: | Debug | Assignee: | Darin Wright <darin.eclipse> |
| Status: | CLOSED INVALID | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | ||
| Version: | 2.0 | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows 2000 | ||
| Whiteboard: | |||
Can no longer reproduce. Closed. |
Use the following test program step into System.out.println. (with no source attached). Opens new editor. Attempt to use the "F" keys. Setting the focus to the Test Java editor and then back to the StringBuffer class file editor fixes the problem. Source public class Test { public static void main(String[] args) { new Test().loop(); } protected void loop() { int i= 0; while (true) { System.out.println("Looping" + i); i++; try { Thread.sleep(1000); } catch (InterruptedException e) { } } } }