]> Dogcows Code - chaz/tint2/commitdiff
*fix* do not multiply max_tick_urgent by 2 because the user should decide whether...
authorAndreas Fink <andreas.fink85@googlemail.com>
Mon, 28 Jun 2010 10:34:06 +0000 (10:34 +0000)
committerAndreas Fink <andreas.fink85@googlemail.com>
Mon, 28 Jun 2010 10:34:06 +0000 (10:34 +0000)
src/config.c
src/panel.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;
index c8c945eea244d03a3f7d31a7a8a5b13222594512..6e7051cf5cd17981e49767415171684191fbfb19 100644 (file)
@@ -87,7 +87,7 @@ void default_panel()
        panel_dock = 0;  // default not in the dock
        panel_layer = BOTTOM_LAYER;  // default is bottom layer
        wm_menu = 0;
-       max_tick_urgent = 7;
+       max_tick_urgent = 14;
        backgrounds = g_array_new(0, 0, sizeof(Background));
 
        memset(&panel_config, 0, sizeof(Panel));
This page took 0.020643 seconds and 4 git commands to generate.