From 1220eca2efc53087a0b3bd93bde5fe41cfad8bc8 Mon Sep 17 00:00:00 2001 From: PartialVolume <22084881+PartialVolume@users.noreply.github.com> Date: Wed, 29 Nov 2023 22:21:01 +0000 Subject: [PATCH] Place a space between temperature and model eg [36C] ST3500... and not [36C]ST3500.. --- src/gui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui.c b/src/gui.c index a0eefc7..5ced82a 100644 --- a/src/gui.c +++ b/src/gui.c @@ -6415,7 +6415,7 @@ void* nwipe_gui_status( void* ptr ) c[i]->device_type_str, c[i]->device_size_text ); wprintw_temperature( c[i] ); - wprintw( main_window, "%s/%s", c[i]->device_model, c[i]->device_serial_no ); + wprintw( main_window, " %s/%s", c[i]->device_model, c[i]->device_serial_no ); /* Check whether the child process is still running the wipe. */ if( c[i]->wipe_status == 1 )