[Konsole-devel] [Bug 176902] Konsole: apps in tabbed shell truncated to 24 lines (LINES=24)
Jonathan Wakely
zilla at kayari.org
Fri Jun 5 14:37:16 UTC 2009
https://bugs.kde.org/show_bug.cgi?id=176902
--- Comment #7 from Jonathan Wakely <zilla kayari org> 2009-06-05 16:37:14 ---
Surely someone is capable of following the steps to reproduce and at least
confirming this bug?
Here are my steps to reproduce, taken from
https://bugzilla.redhat.com/show_bug.cgi?id=477359
1. Close all konsole windows
2. Open new konsole window, resize to 80x40, close window.
3. Open konsole window then open a new tab
4. In the new tab run 'echo $LINES ; resize ; echo $LINES'
Actual results:
$ echo $LINES ; resize ; echo $LINES
24
COLUMNS=80;
LINES=40;
export COLUMNS LINES;
40
Expected results:
$ echo $LINES ; resize ; echo $LINES
40
COLUMNS=80;
LINES=40;
export COLUMNS LINES;
40
As shown by the actual results, the problem is that creating a new tab in an
80x40 konsole window results in LINES=24 initially, confusing apps using
ncurses. Resizing the window or running 'resize' corrects the value of $LINES,
but should nto be necessary.
--
Configure bugmail: https://bugs.kde.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
More information about the konsole-devel
mailing list