diff options
-rw-r--r-- | TODO | 1 | ||||
-rw-r--r-- | st.c | 4 |
2 files changed, 3 insertions, 2 deletions
@@ -11,6 +11,7 @@ code & interface | |||
11 | * clean selection code | 11 | * clean selection code |
12 | * clean and complete terminfo entry | 12 | * clean and complete terminfo entry |
13 | * fix shift up/down (shift selection in emacs) | 13 | * fix shift up/down (shift selection in emacs) |
14 | * fast drawing | ||
14 | * ... | 15 | * ... |
15 | 16 | ||
16 | misc | 17 | misc |
@@ -1627,8 +1627,8 @@ xinit(void) { | |||
1627 | xloadcols(); | 1627 | xloadcols(); |
1628 | 1628 | ||
1629 | /* window - default size */ | 1629 | /* window - default size */ |
1630 | xw.bufh = 24 * xw.ch; | 1630 | xw.bufh = term.row * xw.ch; |
1631 | xw.bufw = 80 * xw.cw; | 1631 | xw.bufw = term.col * xw.cw; |
1632 | xw.h = xw.bufh + 2*BORDER; | 1632 | xw.h = xw.bufh + 2*BORDER; |
1633 | xw.w = xw.bufw + 2*BORDER; | 1633 | xw.w = xw.bufw + 2*BORDER; |
1634 | 1634 | ||