diff options
Diffstat (limited to 'contrib/bsddialog/lib/theme.c')
| -rw-r--r-- | contrib/bsddialog/lib/theme.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/contrib/bsddialog/lib/theme.c b/contrib/bsddialog/lib/theme.c index 04f85b2455fa..6c17d908324b 100644 --- a/contrib/bsddialog/lib/theme.c +++ b/contrib/bsddialog/lib/theme.c @@ -1,7 +1,7 @@  /*-   * SPDX-License-Identifier: BSD-2-Clause   * - * Copyright (c) 2021-2023 Alfonso Sabato Siciliano + * Copyright (c) 2021-2025 Alfonso Sabato Siciliano   *   * Redistribution and use in source and binary forms, with or without   * modification, are permitted provided that the following conditions @@ -217,7 +217,7 @@ int bsddialog_set_theme(struct bsddialog_theme *theme)  {  	CHECK_PTR(theme);  	set_theme(&t, theme); -	refresh(); +	wnoutrefresh(stdscr);  	return (BSDDIALOG_OK);  } @@ -239,7 +239,7 @@ int bsddialog_set_default_theme(enum bsddialog_default_theme newtheme)  		    "to use enum bsddialog_default_theme",  		    newtheme);  	} -	refresh(); +	wnoutrefresh(stdscr);  	return (BSDDIALOG_OK);  } | 
