don't block when showing error messages

This commit is contained in:
Alexandros Theodotou 2023-01-18 19:42:28 +09:00
parent d42ec90ce5
commit 5074ded65e
No known key found for this signature in database
GPG Key ID: 022EAE42313D70F3
2 changed files with 1 additions and 2 deletions

View File

@ -306,7 +306,6 @@ recording_manager_handle_recording (
re->local_offset = time_nfo->local_offset;
re->nframes = time_nfo->nframes;
re->track_name_hash = tr->name_hash;
/*UP_RECEIVED (re);*/
recording_event_queue_push_back_event (
self->event_queue, re);

View File

@ -26,7 +26,7 @@ error_handle_prv (GError * err, const char * format, ...)
if (ZRYTHM_HAVE_UI)
{
ui_show_message_printf (
GTK_MESSAGE_ERROR, true, "%s", str);
GTK_MESSAGE_ERROR, false, "%s", str);
}
else
{