From 17476212e59d7bb84587c9a46be44f6a87779427 Mon Sep 17 00:00:00 2001 From: Xavi Artigas Date: Fri, 29 Jun 2018 11:29:27 -0400 Subject: [PATCH] default theme: fix part names in systray Summary: Ref T6966 Depends on D6459 Reviewers: zmike, devilhorns Reviewed By: zmike Subscribers: cedric, #committers Tags: #efl Maniphest Tasks: T6966 Differential Revision: https://phab.enlightenment.org/D6460 --- data/elementary/themes/edc/systray.edc | 33 +++++++++++++------------- 1 file changed, 17 insertions(+), 16 deletions(-) diff --git a/data/elementary/themes/edc/systray.edc b/data/elementary/themes/edc/systray.edc index 93f17667c5..fefe075de2 100644 --- a/data/elementary/themes/edc/systray.edc +++ b/data/elementary/themes/edc/systray.edc @@ -5,6 +5,7 @@ group { name: "e/modules/systray/main"; data.item: "inset" "64 64 64"; data.item: "plain" "64 64 64"; parts { + alias: "box" "e.box"; part { name: "base"; type: RECT; description { state: "default" 0.0; color: 0 0 0 0; @@ -15,7 +16,7 @@ group { name: "e/modules/systray/main"; color: 255 0 0 128; } } - part { name: "box"; type: BOX; + part { name: "e.box"; type: BOX; description { state: "default" 0.0; align: 0 0; box { @@ -38,72 +39,72 @@ group { name: "e/modules/systray/main"; program { signal: "e,action,orient,horiz"; source: "e"; action: STATE_SET "default" 0.0; - target: "box"; + target: "e.box"; } program { signal: "e,action,orient,vert"; source: "e"; action: STATE_SET "vertical" 0.0; - target: "box"; + target: "e.box"; } program { signal: "e,action,orient,left"; source: "e"; action: STATE_SET "vertical" 0.0; - target: "box"; + target: "e.box"; } program { signal: "e,action,orient,right"; source: "e"; action: STATE_SET "vertical" 0.0; - target: "box"; + target: "e.box"; } program { signal: "e,action,orient,top"; source: "e"; action: STATE_SET "default" 0.0; - target: "box"; + target: "e.box"; } program { signal: "e,action,orient,bottom"; source: "e"; action: STATE_SET "default" 0.0; - target: "box"; + target: "e.box"; } program { signal: "e,action,orient,corner_tl"; source: "e"; action: STATE_SET "default" 0.0; - target: "box"; + target: "e.box"; } program { signal: "e,action,orient,corner_tr"; source: "e"; action: STATE_SET "default" 0.0; - target: "box"; + target: "e.box"; } program { signal: "e,action,orient,corner_bl"; source: "e"; action: STATE_SET "default" 0.0; - target: "box"; + target: "e.box"; } program { signal: "e,action,orient,corner_br"; source: "e"; action: STATE_SET "default" 0.0; - target: "box"; + target: "e.box"; } program { signal: "e,action,orient,corner_lt"; source: "e"; action: STATE_SET "vertical" 0.0; - target: "box"; + target: "e.box"; } program { signal: "e,action,orient,corner_rt"; source: "e"; action: STATE_SET "vertical" 0.0; - target: "box"; + target: "e.box"; } program { signal: "e,action,orient,corner_lb"; source: "e"; action: STATE_SET "vertical" 0.0; - target: "box"; + target: "e.box"; } program { signal: "e,action,orient,corner_rb"; source: "e"; action: STATE_SET "vertical" 0.0; - target: "box"; + target: "e.box"; } } -} \ No newline at end of file +}