Added the key bind for the new toolbar button, defaults to Ctrl+Alt+I.

This commit is contained in:
OBattler
2025-12-05 15:04:14 +01:00
parent 195e80c9c1
commit e57ab1ec6d
2 changed files with 6 additions and 1 deletions

View File

@@ -293,6 +293,11 @@ struct accelKey def_acc_keys[NUM_ACCELS] = {
.name="mute",
.desc="Toggle mute",
.seq="Ctrl+Alt+M"
},
{
.name="force_interpretation",
.desc="Force interpretation",
.seq="Ctrl+Alt+I"
}
};

View File

@@ -330,7 +330,7 @@ struct accelKey {
char desc[64];
char seq[64];
};
#define NUM_ACCELS 9
#define NUM_ACCELS 10
extern struct accelKey acc_keys[NUM_ACCELS];
extern struct accelKey def_acc_keys[NUM_ACCELS];
extern int FindAccelerator(const char *name);