[gtk+/gtk-style-context: 312/533] GtkStyleContext: Fix merging of local and global providers.
- From: Carlos Garnacho <carlosg src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+/gtk-style-context: 312/533] GtkStyleContext: Fix merging of local and global providers.
- Date: Wed, 1 Dec 2010 02:32:03 +0000 (UTC)
commit 34fd705c183f4778eafc92a80b501912f71205c6
Author: Carlos Garnacho <carlosg gnome org>
Date: Wed Nov 3 11:40:12 2010 +0100
GtkStyleContext: Fix merging of local and global providers.
gtk/gtkstylecontext.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/gtk/gtkstylecontext.c b/gtk/gtkstylecontext.c
index 8985877..fe4084e 100644
--- a/gtk/gtkstylecontext.c
+++ b/gtk/gtkstylecontext.c
@@ -741,7 +741,7 @@ find_next_candidate (GList *local,
local_data = local->data;
global_data = global->data;
- if (local_data->priority >= global_data->priority)
+ if (local_data->priority < global_data->priority)
return local;
else
return global;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]