seoz pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=ba67ee02cbd4ba957ea002c60b042eb724f58662
commit ba67ee02cbd4ba957ea002c60b042eb724f58662 Author: Daniel Juyung Seo <[email protected]> Date: Wed Aug 13 03:11:00 2014 +0900 button: fix hoversel and button fixed: 1 1 warning in the same way. Now both hoversel and button are usable. This is easiest way to fix the bug. But why it didn't work well even hoversel inherit button default style? Revert "button: revert this patch because this patch just broke hoversel." This reverts commit 3238c8787511aaf69b755760b24f1aa518477d75. --- data/themes/edc/elm/button.edc | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/data/themes/edc/elm/button.edc b/data/themes/edc/elm/button.edc index 199a49e..097ce85 100644 --- a/data/themes/edc/elm/button.edc +++ b/data/themes/edc/elm/button.edc @@ -171,6 +171,7 @@ group { name: "elm/button/base/default"; text_class: "button"; } visible: 0; + fixed: 1 1; } desc { "visible"; inherit: "default"; @@ -178,12 +179,14 @@ group { name: "elm/button/base/default"; text.min: 1 1; text.ellipsis: -1; visible: 1; + fixed: 0 0; } desc { "textonly"; inherit: "default"; text.min: 1 1; text.ellipsis: -1; visible: 1; + fixed: 0 0; } desc { "disabled_visible"; inherit: "default"; @@ -193,6 +196,7 @@ group { name: "elm/button/base/default"; text.min: 1 1; text.ellipsis: -1; visible: 1; + fixed: 0 0; } desc { "disabled_textonly"; inherit: "default"; @@ -201,6 +205,7 @@ group { name: "elm/button/base/default"; text.min: 1 1; text.ellipsis: -1; visible: 1; + fixed: 0 0; } } rect { "event"; @@ -828,6 +833,7 @@ group { name: "elm/button/base/hoversel_vertical/default"; text.text_class: "hoversel"; text.ellipsis: -1; color3: 255 255 255 255; + fixed: 1 1; } desc { "visible"; inherit: "default"; @@ -835,12 +841,14 @@ group { name: "elm/button/base/hoversel_vertical/default"; text.min: 1 1; text.ellipsis: -1; visible: 1; + fixed: 0 0; } desc { "textonly"; inherit: "default"; text.min: 1 1; text.ellipsis: -1; visible: 1; + fixed: 0 0; } desc { "disabled_visible"; inherit: "default"; @@ -849,6 +857,7 @@ group { name: "elm/button/base/hoversel_vertical/default"; text.min: 1 1; text.ellipsis: -1; visible: 1; + fixed: 0 0; } desc { "disabled_textonly"; inherit: "default"; @@ -856,6 +865,7 @@ group { name: "elm/button/base/hoversel_vertical/default"; text.min: 1 1; text.ellipsis: -1; visible: 1; + fixed: 0 0; } } image { "select_line"; nomouse; --
