projects
/
platform
/
upstream
/
enlightenment.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9bb7ab6
)
e button widget: same bad logic when removing text. See r81045.
author
Chidambar Zinnoury
<illogict@online.fr>
Sun, 16 Dec 2012 16:36:55 +0000
(16:36 +0000)
committer
Chidambar Zinnoury
<illogict@online.fr>
Sun, 16 Dec 2012 16:36:55 +0000
(16:36 +0000)
Sorry, didn’t check before committing!
SVN revision: 81046
src/bin/e_widget_button.c
patch
|
blob
|
history
diff --git
a/src/bin/e_widget_button.c
b/src/bin/e_widget_button.c
index
ad18eaf
..
960c319
100644
(file)
--- a/
src/bin/e_widget_button.c
+++ b/
src/bin/e_widget_button.c
@@
-94,7
+94,7
@@
e_widget_button_label_set(Evas_Object *obj, const char *label)
if ((label) && (label[0] != 0))
wd->type |= E_WIDGET_BUTTON_TEXT;
else
- wd->type
= ~(wd->type & E_WIDGET_BUTTON_TEXT)
;
+ wd->type
&= ~E_WIDGET_BUTTON_TEXT
;
_e_wid_button_state_send(wd);
edje_object_size_min_calc(wd->o_button, &mw, &mh);
e_widget_size_min_set(obj, mw, mh);