|
From: Boris F. - E. G. <no-...@en...> - 2013-09-08 18:39:15
|
billiob pushed a commit to branch master.
commit 6bfac4be48c69eec890db80364b3ed540f929b30
Author: Boris Faure <bi...@gm...>
Date: Sun Sep 8 20:37:33 2013 +0200
forgot to remove some code
---
src/bin/options_theme.c | 5 -----
1 file changed, 5 deletions(-)
diff --git a/src/bin/options_theme.c b/src/bin/options_theme.c
index 49ab86b..8903d2b 100644
--- a/src/bin/options_theme.c
+++ b/src/bin/options_theme.c
@@ -61,17 +61,12 @@ _cb_op_theme_sel(void *data, Evas_Object *obj EINA_UNUSED, void *event EINA_UNUS
{
Theme *t = data;
Config *config = termio_config_get(t->term);
- Evas_Object *edje = termio_theme_get(t->term);
if ((config->theme) && (!strcmp(t->name, config->theme)))
return;
eina_stringshare_replace(&(config->theme), t->name);
config_save(config, NULL);
- if (!theme_apply(edje, config, "terminology/background"))
- ERR("Couldn't find terminology theme!");
- colors_term_init(termio_textgrid_get(t->term), edje);
- termio_config_set(t->term, config);
change_theme(termio_win_get(t->term), config);
}
--
|