Skip to content

Commit

Permalink
Merge pull request #438 from ryota-ka/window-position
Browse files Browse the repository at this point in the history
Place message window to the right position
  • Loading branch information
ryota-ka authored May 5, 2021
2 parents b9d06f8 + b4260a1 commit bd43fa3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/twterm/screen.rb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def initialize(app, client)

@tab_manager_window = @stdscr.subwin(1, width, 0, 0)
@tab_window = @stdscr.subwin(height - 3, width, 2, 0)
@message_window_window = @stdscr.subwin(1, width, height - 1, 0)
@message_window_window = @stdscr.subwin(1, width, height - 2, 0)
@search_query_window_window = @stdscr.subwin(1, width, height - 1, 0)

Curses.noecho
Expand Down

0 comments on commit bd43fa3

Please sign in to comment.