]> Dogcows Code - chaz/tint2/blobdiff - src/config.c
*fix* do not multiply max_tick_urgent by 2 because the user should decide whether...
[chaz/tint2] / src / config.c
index 1175660b4d45e74c13717a2f90ca50c825cdf1d8..22d6f6f241b10bea549c943614f12c09bf345732 100644 (file)
@@ -279,7 +279,7 @@ void add_entry (char *key, char *value)
        else if (strcmp (key, "panel_dock") == 0)
                panel_dock = atoi (value);
        else if (strcmp (key, "urgent_nb_of_blink") == 0)
-               max_tick_urgent = (atoi (value) * 2) + 1;
+               max_tick_urgent = atoi (value);
        else if (strcmp (key, "panel_layer") == 0) {
                if (strcmp(value, "bottom") == 0)
                        panel_layer = BOTTOM_LAYER;
This page took 0.019698 seconds and 4 git commands to generate.