The-Panacea-Projects / Gnomenu

GnoMenu - is a traditional styled full featured Gnome-Shell apps-menu, that aims to offer all the essentials in a simple uncluttered intuitive interface. Menu fully supports user theme integration and in addition themes that carry native support can be found here http://the-panacea-projects.deviantart.com/
GNU General Public License v3.0
119 stars 49 forks source link

Keyboard Handle #95

Open rypz79 opened 6 years ago

rypz79 commented 6 years ago

Hi,

You loose the handle when pressing ENTER on an app,menu or an icon. Instead of opening it, It jumps to the search bar and writes some kind of an hyphen character.

Thanks screenshot from 2018-06-11 13-09-52 screenshot from 2018-06-11 13-10-33 screenshot from 2018-06-11 13-11-06

The-Panacea-Projects commented 6 years ago

Are you using the latest version from Github?

The-Panacea-Projects commented 6 years ago

screenshot from 2018-06-11 10-56-59 Hide Menuarrow option.

rypz79 commented 6 years ago

Are you using the latest version from Github?

Now I am and it fixes the problem (still I cannot increase the start-here icon size) but it's not synced with the shell extension website.

When I update things go bad again.

Thanks

screenshot from 2018-06-12 07-48-42

The-Panacea-Projects commented 6 years ago

Master branch is ahead most of the time. After submission and reviews are done the shell extension website will update to the latest version.

As for adjusting the icon size that feature is yet to be added.

rypz79 commented 6 years ago

Is there a way to bind only the </Super/> key (without other keys) to the menu shortcut key ?? Currently he it refuses. It says:

Invalid accelerator. Try F12, </Super/>Space, |ctrl>|alt>|shift>a, etc...

If it will be possible I'll rebind the default action (show activities overview) to another key.

Thank you

rypz79 commented 6 years ago

@The-Panacea-Projects hello (again) ,

I'm still trying to bind </Super/> (without any key) to open the panel menu (old habits die hard I guess :smiley: )
In prefs.js lines 528-537:

File: /home/roey/.local/share/gnome-shell/extensions/gnomenu@panacier.gmail.com/prefs.js
528: let [key, mods] = Gtk.accelerator_parse(entry.get_text());
529: if(Gtk.accelerator_valid(key, mods)) {
530:     keyboardAccelEntry["secondary-icon-name"] = null;
531:     keyboardAccelEntry["secondary-icon-tooltip-text"] = null;
532:     let shortcut = Gtk.accelerator_name(key, mods);
533:     this.settings.set_strv('panel-menu-keyboard-accelerator', [shortcut]);
534: } else {
535:     keyboardAccelEntry["secondary-icon-name"] = "dialog-warning-symbolic";
536:     keyboardAccelEntry["secondary-icon-tooltip-text"] = _("Invalid accelerator. Try F12, <Super>space, <Ctrl><Alt><Shift>a, etc.");
537: }

Line 532 Gtk.accelerator_name(key, mods); cannot take without any other key ?

Lines 535-6 looks like an input sanity check, if I remove the else Gtk.accelerator_name(key, mods); will accept </Super/> or any other key as an accelerator ?

TNX ALOT