mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-04 14:30:18 +01:00
tui: fix flickering with large windows
Use newtPopWindowNoRefresh() rather than newtPopWindow() when destroying a form, since often we have to destroy and then almost immediately after re-create the same form, and we don't want that to be visible.
This commit is contained in:
parent
5d581b0d08
commit
6ee48dc964
1 changed files with 1 additions and 1 deletions
|
|
@ -262,7 +262,7 @@ nmt_newt_form_destroy (NmtNewtForm *form)
|
|||
|
||||
newtFormDestroy (priv->form);
|
||||
priv->form = NULL;
|
||||
newtPopWindow ();
|
||||
newtPopWindowNoRefresh ();
|
||||
|
||||
nmt_newt_widget_unrealize (priv->content);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue