From 543156a14b6d9e20686d0a2056519a7f49ad22dd Mon Sep 17 00:00:00 2001 From: Daniel Juyung Seo Date: Mon, 23 Sep 2013 16:57:11 +0900 Subject: [PATCH] enventor - fix formatting before working on it. --- src/bin/main.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/bin/main.c b/src/bin/main.c index dcc03f4..de54f8f 100644 --- a/src/bin/main.c +++ b/src/bin/main.c @@ -563,15 +563,15 @@ config_data_set(app_data *ad, int argc, char **argv) static void elm_setup() { - elm_config_profile_set("standard"); + elm_config_profile_set("standard"); - /* Recover the scale & theme since it will be reset by - elm_config_profile_set() */ - char *scale = getenv("ELM_SCALE"); - if (scale) elm_config_scale_set(atof(scale)); + /* Recover the scale & theme since it will be reset by + elm_config_profile_set() */ + char *scale = getenv("ELM_SCALE"); + if (scale) elm_config_scale_set(atof(scale)); - char *theme = getenv("ELM_THEME"); - if (theme) elm_theme_set(NULL, theme); + char *theme = getenv("ELM_THEME"); + if (theme) elm_theme_set(NULL, theme); elm_config_scroll_bounce_enabled_set(EINA_FALSE); elm_policy_set(ELM_POLICY_QUIT, ELM_POLICY_QUIT_LAST_WINDOW_CLOSED);