Page 1 of 1

How to change menu shortcuts

Posted: Thu Apr 03, 2014 9:13 am
by Christof Schardt
I recently upgraded from 4.7.3 to 7.2 and experienced a different workflow in the pulldown menus. It is caused by the fact, that shortcuts (german) have changed and aren't unique any more.

How can I change the menu shortcuts?

I tried to hack the DLL in a res-editor, but this did not work, because the relevant strings did not appear in the file as expected. Apparently there is no 1:1-mapping between resource entries and menu entries.

BTW: Why is it crucial for a fast workflow to have unique accelerators in the menu?
Because only then the key-press leads to immediate actions (open submenu, execute command). Otherwise you have to navigate with additional keystrokes (cursor, enter).

Posted: Thu Apr 03, 2014 4:36 pm
by bbadmin
Please submit a bug report detailing which menu entry shortcuts are duplicated and we will look into this issue.

Thanks,
Keith MacDonald
Helios Software Solutions

bugreport menu shortcuts

Posted: Fri Apr 04, 2014 8:18 am
by Christof Schardt

Code: Select all

In the menu "Bearbeiten"
---------------------------------

Zeilen verbinden
	old: z (good)
	new: v (bad, doubled)

Neu formatieren
	old: t (good)
	new: f (bad, doubled)

Einzug verkleinern
	old: n (good)
	new: l (bad, doubled)

Einzug vergrößern
	old: ö (good)
	new: g (bad, doubled)


In the submenu "Bearbeiten - Kopieren"
---------------------------------
Alle Dateinamen
	a (bad, doubled) old and new
	could be 'd'


menu shortcuts still broken

Posted: Sat Nov 21, 2015 1:25 pm
by Christof Schardt
Again the duplicated shortcuts: I wrote a bug-report.
This takes 10 seconds to fix. Reported in 2014. Any chance to get it into 7.51 ?

Thanks in advance.

Re: menu shortcuts still broken

Posted: Fri Jan 29, 2016 7:55 am
by Christof Schardt
Christof Schardt wrote:Again the duplicated shortcuts: I wrote a bug-report.
This takes 10 seconds to fix. Reported in 2014. Reported in 2015.
Now reported in 2016.
I had hoped for 8.0.

Thanks once again in advance for considering.

Posted: Sat Jan 30, 2016 7:50 pm
by bbadmin
Apologies for not fixing the duplicate menu shortcuts which you reported. This will be corrected in the next release.

Keith MacDonald
Helios Software Solutions

Posted: Tue Feb 02, 2016 7:06 pm
by Christof Schardt
Thanks!

Posted: Sun Jul 24, 2016 9:07 am
by Christof Schardt
bbadmin wrote:Apologies for not fixing the duplicate menu shortcuts which you reported. This will be corrected in the next release.

Keith MacDonald
I updated to 8.02 right now and missed this fix. Did you overlook it?

Posted: Sat Nov 26, 2016 12:10 pm
by Christof Schardt
Christof Schardt wrote:
bbadmin wrote:Apologies for not fixing the duplicate menu shortcuts which you reported. This will be corrected in the next release.

Keith MacDonald
I updated to 8.02 right now and missed this fix. Did you overlook it?

I updated to 8.10 right now and still miss this fix. Did you again and again and again overlook it?

I'm begging again and again and again and again for this tiny little fix, which would make my daily life so much easier.

Posted: Thu Dec 08, 2016 11:33 pm
by Christof Schardt
bbadmin wrote:Apologies for not fixing the duplicate menu shortcuts which you reported. This will be corrected in the next release.

Keith MacDonald
Helios Software Solutions
Which means when exactly?

Posted: Fri Dec 09, 2016 8:03 am
by AmigoJack
On behalf of this: why not offering an INI or an XML file where one can freely edit shortcuts?

In my programs I "simply" used the onclick-method names as identifiers, and thanks to RTTI the program is able to find methods by name, so I can do thrice:
  1. freely assign a menu item caption,
  2. freely assign an action to that menu item (actually I'm able to assign multiple actions to one menu item), and
  3. freely assign a shortcut to a menu item.
I can even create new or drop existing menu items.

So far the effort I put into programming this feature has paid of dozens of times. And for self-teaching purposes one help menu item will print all available action/method names that can be assigned. If TextPad would have this too then nobody could complain anymore.