Skip to content

gtk: disable setlocale()

Gergo Koteles requested to merge soyer/libdecor:dislocale into master

gtk_init_check calls setlocale(LC_ALL, ""); The setlocale call modifies the locale of the program according to the environment variables. This leads to unexpected behavior in printf or locale-aware functions in decorated programs. gtk_disable_setlocale() prevents GTK from calling setlocale().

Merge request reports