sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 7ef08ffbe6dc9a0b35cd9cad0b689136e3515886
parent fe72e3b349f0905519481b77b22c525aca9c704d
Author: Dominique Martinet <asmadeus@codewreck.org>
Date:   Thu,  5 Jul 2018 08:01:09 +0900

pango/cairo: set default font map to NULL to free it

Diffstat:
Msway/main.c | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/sway/main.c b/sway/main.c @@ -1,6 +1,7 @@ #define _XOPEN_SOURCE 700 #define _POSIX_C_SOURCE 200112L #include <getopt.h> +#include <pango/pangocairo.h> #include <signal.h> #include <stdbool.h> #include <stdlib.h> @@ -441,5 +442,7 @@ int main(int argc, char **argv) { free_config(config); } + pango_cairo_font_map_set_default(NULL); + return exit_value; }