Compare commits
2 Commits
56e0305017
...
394df6d391
| Author | SHA1 | Date | |
|---|---|---|---|
|
394df6d391
|
|||
|
b282b12497
|
@@ -312,7 +312,7 @@ inp_get_line(void)
|
||||
wmove(inp_win, 0, 0);
|
||||
_inp_win_update_virtual();
|
||||
// Don't write to the terminal while suspended (external editor active).
|
||||
if (!isendwin()) {
|
||||
if (!is_suspended && !isendwin()) {
|
||||
doupdate();
|
||||
}
|
||||
char* line = NULL;
|
||||
@@ -342,7 +342,7 @@ inp_get_password(void)
|
||||
wmove(inp_win, 0, 0);
|
||||
_inp_win_update_virtual();
|
||||
// Don't write to the terminal while suspended (external editor active).
|
||||
if (!isendwin()) {
|
||||
if (!is_suspended && !isendwin()) {
|
||||
doupdate();
|
||||
}
|
||||
char* password = NULL;
|
||||
|
||||
Reference in New Issue
Block a user