From 2144b915587bbfe2637c5aaa570eb93839ac87a1 Mon Sep 17 00:00:00 2001
From: Benedikt Meurer <benny@xfce.org>
Date: Wed, 3 Aug 2005 15:28:50 +0000
Subject: [PATCH] 2005-08-03	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-job.c(thunar_vfs_job_emit_valist): Lower the
	  Job signal priority to increase the responsiveness of the user
	  interface.




(Old svn revision: 16446)
---
 ChangeLog                   | 6 ++++++
 thunar-vfs/thunar-vfs-job.c | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/ChangeLog b/ChangeLog
index 2369c6068..b117313d1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2005-08-03	Benedikt Meurer <benny@xfce.org>
+
+	* thunar-vfs/thunar-vfs-job.c(thunar_vfs_job_emit_valist): Lower the
+	  Job signal priority to increase the responsiveness of the user
+	  interface.
+
 2005-08-03	Benedikt Meurer <benny@xfce.org>
 
 	* thunar/thunar-details-view-text-renderer.{c,h}: Fast text cell
diff --git a/thunar-vfs/thunar-vfs-job.c b/thunar-vfs/thunar-vfs-job.c
index b83fa29d7..5324bc91e 100644
--- a/thunar-vfs/thunar-vfs-job.c
+++ b/thunar-vfs/thunar-vfs-job.c
@@ -465,7 +465,7 @@ thunar_vfs_job_emit_valist (ThunarVfsJob *job,
   details.pending = TRUE;
 
   g_mutex_lock (job->mutex);
-  g_idle_add_full (G_PRIORITY_DEFAULT, thunar_vfs_job_idle, &details, NULL);
+  g_idle_add_full (G_PRIORITY_LOW, thunar_vfs_job_idle, &details, NULL);
   while (G_UNLIKELY (details.pending))
     g_cond_wait (job->cond, job->mutex);
   g_mutex_unlock (job->mutex);
-- 
GitLab