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
This commit is contained in:
Xavi Artigas 2018-06-29 11:29:27 -04:00 committed by Mike Blumenkrantz
parent 52ed70a3fb
commit 17476212e5
1 changed files with 17 additions and 16 deletions

View File

@ -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";
}
}
}
}