all repos — tint2 @ 9a52416b34e0b8ba41fc61b07895000a6b88ba3a

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

Fix bad read of font setting
o9000 mrovi9000@gmail.com
commit

9a52416b34e0b8ba41fc61b07895000a6b88ba3a

parent

97ea370bf6b33479d902e0b0b32d8f77c5251eaf

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M src/tint2conf/properties_rw.csrc/tint2conf/properties_rw.c

@@ -1683,7 +1683,7 @@ gtk_entry_set_text(GTK_ENTRY(execp_get_last()->execp_dwheel_command), value);

} else if (strcmp(key, "execp_font") == 0) { gtk_font_button_set_font_name(GTK_FONT_BUTTON(execp_get_last()->execp_font), value); - gtk_font_button_set_font_name(GTK_FONT_BUTTON(execp_get_last()->execp_font_set), value); + gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(execp_get_last()->execp_font_set), TRUE); } else if (strcmp(key, "execp_font_color") == 0) { extract_values(value, &value1, &value2, &value3);