mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-17 23:24:51 +00:00
Fix app event handling
We need to hook up to events on the group, and not set higher level actors to be reactive. svn path=/trunk/; revision=77
This commit is contained in:
parent
54329a65b2
commit
07877e7a7a
1 changed files with 4 additions and 4 deletions
|
|
@ -36,13 +36,13 @@ AppDisplayItem.prototype = {
|
|||
this._group = new Clutter.Group({reactive: true,
|
||||
width: width,
|
||||
height: APPDISPLAY_HEIGHT});
|
||||
this._bg = new Clutter.Rectangle({ color: APPDISPLAY_BACKGROUND_COLOR,
|
||||
reactive: true, x: 0, y: 0 });
|
||||
this._group.add_actor(this._bg);
|
||||
this._bg.connect('button-press-event', function(group, e) {
|
||||
this._group.connect('button-press-event', function(group, e) {
|
||||
me.emit('launch');
|
||||
return true;
|
||||
});
|
||||
this._bg = new Clutter.Rectangle({ color: APPDISPLAY_BACKGROUND_COLOR,
|
||||
x: 0, y: 0 });
|
||||
this._group.add_actor(this._bg);
|
||||
|
||||
this._icon = new Clutter.Texture({ width: 48, height: 48, x: 0, y: 0 });
|
||||
let gicon = appinfo.get_icon();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue