Skip to content

Commit

Permalink
Fix incorrect footer on return to preview
Browse files Browse the repository at this point in the history
This fixes incorrect footer text being displayed when
Enable customer/company preview is enabled and the user
select a field to be edited, completes the editing and
returns to the preview to select A for accept. Only
problem was A=Accept wasn't listed on the footer.
  • Loading branch information
PartialVolume committed Dec 16, 2023
1 parent fd6cca7 commit 43bfb3a
Showing 1 changed file with 5 additions and 12 deletions.
17 changes: 5 additions & 12 deletions src/gui.c
Original file line number Diff line number Diff line change
Expand Up @@ -4726,33 +4726,26 @@ void nwipe_gui_preview_org_customer( int mode )
const char *customer_name, *customer_address, *customer_contact_name, *customer_contact_phone;
extern config_t nwipe_cfg;

/* Update the footer window. */
werase( footer_window );
if( mode == SHOWING_IN_CONFIG_MENUS )
{
nwipe_gui_title( footer_window, selection_footer );
}
else
{
nwipe_gui_title( footer_window, selection_footer_preview_prior_to_drive_selection );
}
wrefresh( footer_window );

do
{
do
{
/* Clear the main window. */
werase( main_window );

/* Update the footer window. */
werase( footer_window );
if( mode == SHOWING_IN_CONFIG_MENUS )
{
nwipe_gui_title( footer_window, selection_footer );
nwipe_gui_create_all_windows_on_terminal_resize( 0, selection_footer );
}
else
{
nwipe_gui_create_all_windows_on_terminal_resize( 0, selection_footer_preview_prior_to_drive_selection );
nwipe_gui_title( footer_window, selection_footer_preview_prior_to_drive_selection );
}
wrefresh( footer_window );

/* Determine size of window */
getmaxyx( main_window, wlines, wcols );
Expand Down

0 comments on commit 43bfb3a

Please sign in to comment.