summaryrefslogtreecommitdiff
path: root/data/elementary
diff options
context:
space:
mode:
authorAndy Williams <andy@andywilliams.me>2016-09-25 15:57:08 +0100
committerAndy Williams <andy@andywilliams.me>2016-09-25 15:57:08 +0100
commit553788d7b1679417879721bc12e19b332d52e96b (patch)
tree0314dc4a053fd6f805000a458473786085502a83 /data/elementary
parentf4f5a042a658e5b9101dbdf31abc2b2f1e77c325 (diff)
downloadefl-553788d7b1679417879721bc12e19b332d52e96b.tar.gz
elm_toolbar: Show icons in icon only mode
When passing NULL as label the icon would get hidden. @fix
Diffstat (limited to 'data/elementary')
-rw-r--r--data/elementary/themes/edc/elm/toolbar.edc6
1 files changed, 3 insertions, 3 deletions
diff --git a/data/elementary/themes/edc/elm/toolbar.edc b/data/elementary/themes/edc/elm/toolbar.edc
index 156ddae49e..2ea9293f5b 100644
--- a/data/elementary/themes/edc/elm/toolbar.edc
+++ b/data/elementary/themes/edc/elm/toolbar.edc
@@ -537,7 +537,7 @@ group { name: "elm/toolbar/item/default";
}
description { state: "icononly" 0.0;
inherit: "default" 0.0;
- visible: 0;
+ visible: 1;
rel2.relative: 1.0 1.0;
rel2.offset: -3 -3;
rel2.to_y: "icon_clip";
@@ -574,7 +574,7 @@ group { name: "elm/toolbar/item/default";
}
description { state: "icononly" 0.0;
inherit: "default" 0.0;
- visible: 0;
+ visible: 1;
rel2.relative: 1.0 1.0;
rel2.offset: -3 -3;
rel2.to_y: "icon_clip";
@@ -894,7 +894,7 @@ group { name: "elm/toolbar/item/default";
program { name: "st3";
signal: "elm,icon,hidden"; source: "elm";
script {
- new m = get_int(btmode);
+ new m = get_int(btmode);
m &= ~ICON; set_int(btmode, m);
eval_mode(m);
}