Guest User

Untitled

a guest
Apr 30th, 2016
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.11 KB | None | 0 0
  1. diff -rU 0 a/configure b/configure
  2. --- a/configure 2016-04-11 18:05:01.000000000 -0600
  3. +++ b/configure 2016-04-28 21:22:15.196129300 -0600
  4. @@ -21484 +21484 @@
  5. -LIBS="-lcairo $LIBS"
  6. +LIBS="$CAIRO_LIBS $LIBS"
  7. @@ -22564 +22564 @@
  8. -if $ac_cv_path_XGETTEXT --output=- --color=no --language=Glade $srcdir/gtk/ui/gtkfilechooserwidget.ui > /dev/null 2>&1; then
  9. +if $ac_cv_path_XGETTEXT --output=- --color=no --language=Glade $srcdir/gtk/ui/gtkfilechooserwidget.ui; then
  10. diff -rU 0 a/gtk/gtkiconhelper.c b/gtk/gtkiconhelper.c
  11. --- a/gtk/gtkiconhelper.c 2016-03-25 20:46:38.000000000 -0600
  12. +++ b/gtk/gtkiconhelper.c 2016-04-28 21:21:47.092456500 -0600
  13. @@ -897 +897,8 @@
  14. - gtk_css_style_render_icon_surface (gtk_css_node_get_style (gtk_css_gadget_get_node (GTK_CSS_GADGET (self))),
  15. + GtkCssNode *node;
  16. +
  17. + /* Avoid calling gtk_css_node_get_style() because it can
  18. + * invalidate the style which we don't want while trying
  19. + * to render the current style.
  20. + */
  21. + node = gtk_css_gadget_get_node (GTK_CSS_GADGET (self));
  22. + gtk_css_style_render_icon_surface (node->style,
  23. diff -rU 0 a/gtk/gtkplacessidebar.c b/gtk/gtkplacessidebar.c
  24. --- a/gtk/gtkplacessidebar.c 2016-04-11 12:49:51.000000000 -0600
  25. +++ b/gtk/gtkplacessidebar.c 2016-04-28 21:21:47.092456500 -0600
  26. @@ -544,0 +545 @@
  27. + return TRUE; // hack to get "Recent" location working on Windows and OSX
  28. diff -rU 0 a/gtk/gtkwindow.c b/gtk/gtkwindow.c
  29. --- a/gtk/gtkwindow.c 2016-04-11 17:43:49.000000000 -0600
  30. +++ b/gtk/gtkwindow.c 2016-04-28 21:21:47.108082100 -0600
  31. @@ -79,0 +80,4 @@
  32. +#ifdef GDK_WINDOWING_QUARTZ
  33. +#include "quartz/gdkquartz.h"
  34. +#endif
  35. +
  36. @@ -4089,0 +4094,5 @@
  37. +#endif
  38. +
  39. +#ifdef GDK_WINDOWING_QUARTZ
  40. + if (GDK_IS_QUARTZ_DISPLAY (gtk_widget_get_display (GTK_WIDGET(window))))
  41. + return FALSE;
  42. diff -rU 0 a/gtk/theme/Adwaita/gtk-contained.css b/gtk/theme/Adwaita/gtk-contained.css
  43. --- a/gtk/theme/Adwaita/gtk-contained.css 2016-04-11 14:13:15.000000000 -0600
  44. +++ b/gtk/theme/Adwaita/gtk-contained.css 2016-04-28 21:21:47.108082100 -0600
  45. @@ -2,0 +3 @@
  46. + -GtkButtonBox-child-internal-pad-y: 1;
  47. Only in b: gtk+-3.20.3.patch
Add Comment
Please, Sign In to add comment