all repos — tint2 @ c4fbc2962ee21db61b1721ad8c928f01c798058f

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

tint2conf: Fix bad read of panel_margin
o9000 o9000
commit

c4fbc2962ee21db61b1721ad8c928f01c798058f

parent

a0af851d9dcebd4bcdf62affb01009171d7a59fe

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

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

@@ -747,7 +747,7 @@ }

else if (strcmp(key, "panel_margin") == 0) { extract_values(value, &value1, &value2, &value3); gtk_spin_button_set_value(GTK_SPIN_BUTTON(panel_margin_x), atoi(value1)); - gtk_spin_button_set_value(GTK_SPIN_BUTTON(panel_margin_y), atoi(value1)); + gtk_spin_button_set_value(GTK_SPIN_BUTTON(panel_margin_y), atoi(value2)); } else if (strcmp(key, "panel_padding") == 0) { extract_values(value, &value1, &value2, &value3);