diff options
author | MarcoPolo-PasTonMolo <marcopolopastonmolo@protonmail.com> | 2023-04-02 17:48:51 +0300 |
---|---|---|
committer | MarcoPolo-PasTonMolo <marcopolopastonmolo@protonmail.com> | 2023-04-02 21:53:12 +0300 |
commit | ce688f6737dd972d919da80f2f5870372cd08aab (patch) | |
tree | c9a09a59c1c6f0630f9bc7a9e398bee85b352537 /tests | |
parent | f2c83fa8ceea29e295509c8b964f1e9ccda2f0e4 (diff) | |
download | profani-tty-ce688f6737dd972d919da80f2f5870372cd08aab.tar.gz |
Fix empty window after reconnect
Sometimes after a reconnect the current window would get cleared. This was a deliberate change to fix the profanity window looking all garbled up after providing the passphrase for a gpg key using pinentry-curses. Fixes https://github.com/profanity-im/profanity/issues/1556
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unittests/ui/stub_ui.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/unittests/ui/stub_ui.c b/tests/unittests/ui/stub_ui.c index edd8c336..608f5003 100644 --- a/tests/unittests/ui/stub_ui.c +++ b/tests/unittests/ui/stub_ui.c @@ -1367,6 +1367,10 @@ void win_clear(ProfWin* window) { } +void +win_redraw(ProfWin* window) +{ +} char* win_to_string(ProfWin* window) { |