about summary refs log tree commit diff stats
path: root/src/ui/window.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/window.c')
-rw-r--r--src/ui/window.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/ui/window.c b/src/ui/window.c
index 7ae0c61c..9081e271 100644
--- a/src/ui/window.c
+++ b/src/ui/window.c
@@ -46,7 +46,6 @@ win_create(const char * const title, int cols, win_type_t type)
     wbkgd(new_win->win, COLOUR_TEXT);
     new_win->buffer = buffer_create();
     new_win->y_pos = 0;
-    new_win->x_pos = 0;
     new_win->paged = 0;
     new_win->unread = 0;
     new_win->history_shown = 0;
@@ -72,7 +71,7 @@ win_update_virtual(ProfWin *window)
 {
     int rows, cols;
     getmaxyx(stdscr, rows, cols);
-    pnoutrefresh(window->win, window->y_pos, window->x_pos, 1, 0, rows-3, cols-1);
+    pnoutrefresh(window->win, window->y_pos, 0, 1, 0, rows-3, cols-1);
 }
 
 void
@@ -85,7 +84,6 @@ win_move_to_end(ProfWin *window)
     int size = rows - 3;
 
     window->y_pos = y - (size - 1);
-    window->x_pos = 0;
     if (window->y_pos < 0) {
         window->y_pos = 0;
     }
@@ -428,4 +426,4 @@ win_redraw(ProfWin *window)
         ProfBuffEntry e = buffer_yield_entry(window->buffer, i);
         win_print(window, e.show_char, e.date_fmt, e.flags, e.attrs, e.from, e.message);
     }
-}
\ No newline at end of file
+}