Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/bockbuild.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'packages/patches/gtk/gdkemptypath.patch')
-rw-r--r--packages/patches/gtk/gdkemptypath.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/packages/patches/gtk/gdkemptypath.patch b/packages/patches/gtk/gdkemptypath.patch
deleted file mode 100644
index b1ba890..0000000
--- a/packages/patches/gtk/gdkemptypath.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-diff --git a/gdk/quartz/gdkgc-quartz.c b/gdk/quartz/gdkgc-quartz.c
-index 21cc598..9b79be0 100644
---- a/gdk/quartz/gdkgc-quartz.c
-+++ b/gdk/quartz/gdkgc-quartz.c
-@@ -463,6 +463,10 @@ _gdk_quartz_gc_update_cg_context (GdkGC *gc,
- gdk_region_get_rectangles (_gdk_gc_get_clip_region (gc),
- &rects, &n_rects);
-
-+ /* No rects, nothing to do */
-+ if (n_rects == 0)
-+ return;
-+
- if (n_rects == 1)
- cg_rects = ▭
- else