[Konsole-devel] [Bug 54693] New: text misplaced in ncurses application
Dave
dbjunk at mn.rr.com
Sat Feb 15 22:01:55 UTC 2003
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.kde.org/show_bug.cgi?id=54693
Summary: text misplaced in ncurses application
Product: konsole
Version: 1.0.2
Platform: unspecified
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: NOR
Component: general
AssignedTo: konsole-devel at kde.org
ReportedBy: dbjunk at mn.rr.com
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.
More information about the konsole-devel
mailing list