Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
Bug 171547 - [console] Wrong behavior of the console vertical scroll bar
Summary: [console] Wrong behavior of the console vertical scroll bar
Status: RESOLVED DUPLICATE of bug 137694
Alias: None
Product: Platform
Classification: Eclipse Project
Component: Debug (show other bugs)
Version: 3.2.1   Edit
Hardware: PC Windows XP
: P3 minor (vote)
Target Milestone: ---   Edit
Assignee: Platform-Debug-Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-01-24 09:33 EST by Jan Peter Stotz CLA
Modified: 2007-01-30 12:49 EST (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Jan Peter Stotz CLA 2007-01-24 09:33:07 EST
When printing single characters to the console of Eclipse the vertical scroll bar reacts as the program would print out a large number of lines: The slider is getting smaller and smaller which usually means that the console output spans multiple pages but it does not.

take for example the following small program. It outpunts 10 lines of 100 dots each. Depending on the console windows size this usually fits on one page but the scrollbar-slider indicates that there are about 20 pages and you can even scroll that far (of course those pages are empty).

public class ConsoleTest {

	public static void main(String[] args) {

		try {
			for (int i = 1; i <= 1000; i++) {
				System.out.print(".");
				if ((i % 100) == 0)
					System.out.println("");
				Thread.sleep(10);
			}
			Thread.sleep(60000);
		} catch (InterruptedException e) {
		}
	}
}
Comment 1 Darin Wright CLA 2007-01-30 12:49:39 EST
Appears to work properly in 3.3. I think this is a dup of bug 137694.

*** This bug has been marked as a duplicate of bug 137694 ***