Merge pull request #958 from Hummer12007/pango

config: set pango_markup default to false
This commit is contained in:
Drew DeVault 2016-10-20 09:47:49 -04:00
parent 31d7684f17
commit 66c2a0f70e
2 changed files with 2 additions and 2 deletions

View file

@ -33,7 +33,7 @@ char *parse_font(const char *font) {
struct config *init_config() {
struct config *config = calloc(1, sizeof(struct config));
config->status_command = NULL;
config->pango_markup = true;
config->pango_markup = false;
config->position = DESKTOP_SHELL_PANEL_POSITION_BOTTOM;
config->font = strdup("monospace 10");
config->mode = NULL;