diff --git a/build-aux/flatpak/org.gtk.Demo4.json b/build-aux/flatpak/org.gtk.Demo4.json index 1b7a542d80..7c6ce1a7de 100644 --- a/build-aux/flatpak/org.gtk.Demo4.json +++ b/build-aux/flatpak/org.gtk.Demo4.json @@ -63,6 +63,36 @@ } ] }, + { + "name" : "libsass", + "buildsystem" : "meson", + "builddir" : true, + "config-opts" : [ + "--libdir=/app/lib" + ], + "sources" : [ + { + "type" : "git", + "url" : "https://github.com/lazka/libsass.git", + "branch" : "meson" + } + ] + }, + { + "name" : "sassc", + "buildsystem" : "meson", + "builddir" : true, + "config-opts" : [ + "--libdir=/app/lib" + ], + "sources" : [ + { + "type" : "git", + "url" : "https://github.com/lazka/sassc.git", + "branch" : "meson" + } + ] + }, { "name" : "gtk", "buildsystem" : "meson", diff --git a/build-aux/flatpak/org.gtk.IconBrowser4.json b/build-aux/flatpak/org.gtk.IconBrowser4.json index 1c14244999..49a0c2a308 100644 --- a/build-aux/flatpak/org.gtk.IconBrowser4.json +++ b/build-aux/flatpak/org.gtk.IconBrowser4.json @@ -63,6 +63,36 @@ } ] }, + { + "name" : "libsass", + "buildsystem" : "meson", + "builddir" : true, + "config-opts" : [ + "--libdir=/app/lib" + ], + "sources" : [ + { + "type" : "git", + "url" : "https://github.com/lazka/libsass.git", + "branch" : "meson" + } + ] + }, + { + "name" : "sassc", + "buildsystem" : "meson", + "builddir" : true, + "config-opts" : [ + "--libdir=/app/lib" + ], + "sources" : [ + { + "type" : "git", + "url" : "https://github.com/lazka/sassc.git", + "branch" : "meson" + } + ] + }, { "name" : "gtk", "buildsystem" : "meson", diff --git a/build-aux/flatpak/org.gtk.WidgetFactory4.json b/build-aux/flatpak/org.gtk.WidgetFactory4.json index bcbee387e7..e9893bb0d5 100644 --- a/build-aux/flatpak/org.gtk.WidgetFactory4.json +++ b/build-aux/flatpak/org.gtk.WidgetFactory4.json @@ -63,6 +63,36 @@ } ] }, + { + "name" : "libsass", + "buildsystem" : "meson", + "builddir" : true, + "config-opts" : [ + "--libdir=/app/lib" + ], + "sources" : [ + { + "type" : "git", + "url" : "https://github.com/lazka/libsass.git", + "branch" : "meson" + } + ] + }, + { + "name" : "sassc", + "buildsystem" : "meson", + "builddir" : true, + "config-opts" : [ + "--libdir=/app/lib" + ], + "sources" : [ + { + "type" : "git", + "url" : "https://github.com/lazka/sassc.git", + "branch" : "meson" + } + ] + }, { "name" : "gtk", "buildsystem" : "meson", diff --git a/gsk/gskroundedrect.c b/gsk/gskroundedrect.c index 2dd842d0ca..5090a91b1d 100644 --- a/gsk/gskroundedrect.c +++ b/gsk/gskroundedrect.c @@ -388,8 +388,7 @@ gsk_rounded_rect_locate_point (const GskRoundedRect *self, * @self: a #GskRoundedRect * @point: the point to check * - * Checks if the given @point is inside the rounded rectangle. This function - * returns %FALSE if the point is in the rounded corner areas. + * Checks if the given @point is inside the rounded rectangle. * * Returns: %TRUE if the @point is inside the rounded rectangle **/ @@ -406,8 +405,6 @@ gsk_rounded_rect_contains_point (const GskRoundedRect *self, * @rect: the rectangle to check * * Checks if the given @rect is contained inside the rounded rectangle. - * This function returns %FALSE if @rect extends into one of the rounded - * corner areas. * * Returns: %TRUE if the @rect is fully contained inside the rounded rectangle **/ @@ -436,11 +433,9 @@ gsk_rounded_rect_contains_rect (const GskRoundedRect *self, * @rect: the rectangle to check * * Checks if part of the given @rect is contained inside the rounded rectangle. - * This function returns %FALSE if @rect only extends into one of the rounded - * corner areas but not into the rounded rectangle itself. * * Returns: %TRUE if the @rect intersects with the rounded rectangle - **/ + */ gboolean gsk_rounded_rect_intersects_rect (const GskRoundedRect *self, const graphene_rect_t *rect)