diff options
author | Jaeun Choi <jaeun_choi@naver.com> | 2013-01-16 08:20:47 +0000 |
---|---|---|
committer | Carsten Haitzler <raster@rasterman.com> | 2013-01-16 08:20:47 +0000 |
commit | bd50e6da217822289e66330940b9be5c3f2abc81 (patch) | |
tree | aa3a3342553a60e3a2cdc5316d9ee7796a805878 /NEWS | |
parent | b47f140be267dcde6212dfa913e7e90a55fc287b (diff) |
From: Jaeun Choi <jaeun_choi@naver.com>
Subject: [E-devel] [PATCH] elm_index: removed unnecessary lines
I removed some unnecessary lines from elm_index.c
1. in _index_box_auto_fill
_index_box_clear(line 178) does nothing:
if _index_box_clear is called, it means sd->level_active[level] is
false (line 116).
if sd->level_active[level] is false, _index_box_clear returns
immediately (line 60).
2. in _on_mouse_down
3. in _on_mouse_in_access
4. in _autohide_disabled_set
Signal emit is enough.
Filling the box and displaying the box are separated jobs.
I think it's logically consistent to fill the box only when
1) elm_index_level_go is called
2) theme is changed
5. in _level_go
Always clear the box before fill the box.
SVN revision: 82864
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -122,6 +122,7 @@ Fixes: | |||
122 | * Added the min_year and max_year in the standard profile config. | 122 | * Added the min_year and max_year in the standard profile config. |
123 | * Fix omitting signal emission when customized text parts change the text. | 123 | * Fix omitting signal emission when customized text parts change the text. |
124 | * Fix "changed" signal being sent twice in case of toggle style when check is clicked. | 124 | * Fix "changed" signal being sent twice in case of toggle style when check is clicked. |
125 | * Fix index refill bug when autohide disabled. | ||
125 | 126 | ||
126 | Removals: | 127 | Removals: |
127 | 128 | ||