| Summary: | text misplaced in ncurses application | ||
|---|---|---|---|
| Product: | [Applications] konsole | Reporter: | Dave <dbjunk> |
| Component: | general | Assignee: | Konsole Bugs <konsole-bugs-null> |
| Status: | RESOLVED WORKSFORME | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | 1.0.2 | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
Works with Konsole 1.2. KDE 2.2 is a really outdated version. |
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.