From 07ef35aa4a20dca9e41320d967717e7ad7321651 Mon Sep 17 00:00:00 2001 From: o9000 Date: Tue, 25 Oct 2016 10:23:09 +0200 Subject: [PATCH] tint2conf: Fix typo in reading panel_shrink --- src/tint2conf/properties_rw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tint2conf/properties_rw.c b/src/tint2conf/properties_rw.c index 8f1719c..22a7771 100644 --- a/src/tint2conf/properties_rw.c +++ b/src/tint2conf/properties_rw.c @@ -1200,7 +1200,7 @@ void add_entry(char *key, char *value) gtk_combo_box_set_active(GTK_COMBO_BOX(panel_combo_monitor), 6); } else if (strcmp(key, "primary_monitor_first") == 0) { gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(panel_primary_monitor_first), atoi(value)); - } else if (strcmp(key, "primary_shrink") == 0) { + } else if (strcmp(key, "panel_shrink") == 0) { gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(panel_shrink), atoi(value)); }