diff options
author | Hannes Janetzek <hannes.janetzek@gmail.com> | 2009-06-25 05:56:02 +0000 |
---|---|---|
committer | Hannes Janetzek <hannes.janetzek@gmail.com> | 2009-06-25 05:56:02 +0000 |
commit | ca0d5bcc8c98e431508f6a936a113b1bbb5d0464 (patch) | |
tree | 35795c267e26cd596516e74f891165e60296f444 | |
parent | 9f2914ffe4e4161abf72288f67ff92ee9dd4e3b1 (diff) | |
download | enlightenment-ca0d5bcc8c98e431508f6a936a113b1bbb5d0464.tar.gz enlightenment-ca0d5bcc8c98e431508f6a936a113b1bbb5d0464.tar.xz enlightenment-ca0d5bcc8c98e431508f6a936a113b1bbb5d0464.zip |
'everything' module: show on current zone
SVN revision: 41192
-rw-r--r-- | src/modules/everything/evry.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/everything/evry.c b/src/modules/everything/evry.c index 986b1a488..5ef0cf557 100644 --- a/src/modules/everything/evry.c +++ b/src/modules/everything/evry.c @@ -153,8 +153,8 @@ evry_show(E_Zone *zone) return 0; } - x = zone->x + (zone->w / 2) - (evry_conf->width / 2); - y = zone->y + (zone->h / 2) - (evry_conf->height / 2); + x = (zone->w / 2) - (evry_conf->width / 2); + y = (zone->h / 2) - (evry_conf->height / 2); popup = e_popup_new(zone, x, y, evry_conf->width, evry_conf->height); if (!popup) return 0; |