diff options
author | Simon Howard | 2006-06-02 19:36:37 +0000 |
---|---|---|
committer | Simon Howard | 2006-06-02 19:36:37 +0000 |
commit | e9619f83e977041676e766920178db827ddddb3d (patch) | |
tree | 5453dc3608f73a10d0345657508dc13674bdd82c | |
parent | f03d7bd78f86dbe824c7048e19a031ac4f612ac9 (diff) | |
download | chocolate-doom-e9619f83e977041676e766920178db827ddddb3d.tar.gz chocolate-doom-e9619f83e977041676e766920178db827ddddb3d.tar.bz2 chocolate-doom-e9619f83e977041676e766920178db827ddddb3d.zip |
Draw the bottom separator in windows at the full window width.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 550
-rw-r--r-- | textscreen/txt_window.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/textscreen/txt_window.c b/textscreen/txt_window.c index f04b8c68..53813a02 100644 --- a/textscreen/txt_window.c +++ b/textscreen/txt_window.c @@ -295,7 +295,8 @@ void TXT_DrawWindow(txt_window_t *window) widgets = (txt_widget_t *) window; - TXT_DrawSeparator(window->window_x, widgets->y + widgets->h, widgets->w); + TXT_DrawSeparator(window->window_x, widgets->y + widgets->h, + window->window_w); // Action area at the window bottom |