Show Apps button not clickable?
The "Show Apps" button doesn't seem to be doing anything. Is this by design?
No that's not normal. What's your version of GS ? Please test this in Dock Express too.
No that's not normal. What's your version of GS ? Please test this in Dock Express too.
It does work fine in Dock Express, thanks. Any idea when Dock Express might show up on all monitors though?
At the end of october or in december. I put a reminder in my calendar.
I wanted first to make a new extension that makes exactly what I expected.
I'm using GS 49 and I had the same issue. I solved it by changing button-release-event to clicked.
this.showAppsButton.connectObject('button-release-event', () => Main.overview.showApps(), this); => this.showAppsButton.connectObject('clicked', () => Main.overview.showApps(), this);
(in extension.js on line 109)
Yes I wrote something similar here: https://github.com/fthx/dock-express/blob/ee570f4274691d5815d5083d6abd1a887553bf8f/extension.js#L189