Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/gui/splash.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,17 @@ static void _process_all_gui_events()
// give Gtk a chance to update the screen; we need to let the event
// processing run several times for the splash window to actually be
// fully displayed/updated
#ifdef _WIN32
// Win32 GDK backend redraws synchronously via gdk_display_sync()
// called after this function — no need to sleep.
dt_gui_process_events();
#else
for(int i = 0; i < 5; i++)
{
g_usleep(1000);
dt_gui_process_events();
}
#endif
}

static GtkWidget *_get_logo()
Expand Down
Loading