default clock gadget config is now digital with seconds display disabled
authorMike Blumenkrantz <m.blumenkran@samsung.com>
Mon, 7 Oct 2013 03:01:29 +0000 (04:01 +0100)
committerMike Blumenkrantz <m.blumenkran@samsung.com>
Mon, 7 Oct 2013 03:01:29 +0000 (04:01 +0100)
I've never seen anyone use the analog clock, so this should save people some time when adding new clocks on their screen

next step: make the clock able to do timezones...

src/modules/clock/e_mod_main.c

index 5063b88..b234de1 100644 (file)
@@ -756,9 +756,9 @@ _conf_item_get(const char *id)
    ci->weekend.start = 6;
    ci->weekend.len = 2;
    ci->week.start = 1;
-   ci->digital_clock = 0;
+   ci->digital_clock = 1;
    ci->digital_24h = 0;
-   ci->show_seconds = 1;
+   ci->show_seconds = 0;
    ci->show_date = 0;
 
    clock_config->items = eina_list_append(clock_config->items, ci);