I don't want to disable the overview mode entirely just the hover effect. I'm just tired of accidently going into overview mode. I just want to be able to click on it and go there. I installed the "Disable Hot Corners" Extension from extensions.gnome.org but from what I read on the comments it doesn't seem to work on Fedora 16 due to a conflicting extension.
I've located the conflicting extension (Activities Button text Local Icon from fpmurphey), but it's one I would rather not remove. I also installed No Top Left Hot Corner from fpmurphey but it only works when I disable the previous extension. Is there a work around for this? Maybe editing the panel.css file? If so, what exactly should I remove? I know I would have to do it again when I eventually upgrade, but I'm fine with that... I hate that hover effect!
---------- Post added at 06:46 PM ---------- Previous post was at 05:50 PM ----------
Okay, I tried editing the /usr/share/gnome-shell/js/ui/panel.js file and replaced these lines:
Code:
578 this._hotCorner = new Layout.HotCorner();
579 container.add_actor(this._hotCorner.actor);
With this:
Code:
578 this._hotCorner = new Layout.HotCorner();
579 // container.add_actor(this._hotCorner.actor);
I pressed Alt+F2 then R and it had no effect so the original extension must be conflicting with this too. Unless I just did this wrong.... Are there some lines of code I can add to the /.local/share/gnome-shell/extensions/activitiesbuttontextlocalicon@fpmurphy.com/extension.js file itself to help with this?
---------- Post added at 06:58 PM ---------- Previous post was at 06:46 PM ----------
I figured it out. I edited the /usr/share/gnome-shell/js/ui/layout.js and changed these lines:
Code:
this._corner = new Clutter.Rectangle({ name: 'hot-corner',
width: 1,
height: 1,
opacity: 0,
reactive: true });
All I did was set "reactive" to false and restarted the shell.