Skip to content

Commit

Permalink
Fix for stuurman issue sde-gui#34
Browse files Browse the repository at this point in the history
Fix for idle_func - pref dialog options are saved correctly
  • Loading branch information
maplee0 committed Nov 20, 2023
1 parent db83344 commit 94a3709
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/volume-manager.c
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ static gboolean fm_volume_manager_delay_init(gpointer user_data)
void fm_volume_manager_init()
{
/* init the volume manager when idle */
on_idle_handler = g_idle_add_full(G_PRIORITY_LOW, fm_volume_manager_delay_init, NULL, NULL);
on_idle_handler = gdk_threads_add_idle_full(G_PRIORITY_LOW, fm_volume_manager_delay_init, NULL, NULL);
}

void fm_volume_manager_finalize()
Expand Down

0 comments on commit 94a3709

Please sign in to comment.