Bug 54693 - text misplaced in ncurses application
Summary: text misplaced in ncurses application
Status: RESOLVED WORKSFORME
Alias: None
Product: konsole
Classification: Applications
Component: general (show other bugs)
Version: 1.0.2
Platform: unspecified Linux
: NOR normal
Target Milestone: ---
Assignee: Konsole Developer
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-02-15 23:01 UTC by Dave
Modified: 2003-02-16 23:44 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Dave 2003-02-15 23:01:54 UTC
Version:           1.0.2 (using KDE 2.2-1)
Compiler:          gcc version 2.96 20000731 (Red Hat Linux 7.1 2.96-98)
OS:          Linux (i586) release 2.4.7-10

Compile and run the followingu sing g++ with default compiler options and link with /usr/lib/libncurses.a:

#include <curses.h>
void main(void)
{
	initscr();
	move(5,6);
	addstr("Select");
	move(6,7);
	addstr("Select Included");
	refresh();
	getch();
	endwin();
}

The phrase "Select Included" is misplaced.  It's as though I preceeded it with "move(6,11)" instead of "move(6,7)".  The same compiled binary works fine with xterm and outside of the GUI at the Linux console.
Comment 1 Stephan Binner 2003-02-16 23:44:48 UTC
Works with Konsole 1.2. KDE 2.2 is a really outdated version.