default clock gadget config is now digital with seconds display disabled

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...
This commit is contained in:
Mike Blumenkrantz 2013-10-07 04:01:29 +01:00
parent c2b8ec2e03
commit 54055e4125
1 changed files with 2 additions and 2 deletions

View 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);