Client shortcut

Hi,

The gtk client 6.0 on mac os doesn’t have any shortcut for Copy Paste Cut. I tried to edit ~/.config/tryton/6.0/accel.map to get them back, without success. How can I have them back?

Those are OS standard shortcuts, they are not managed by Tryton client.

Thks for this info! Here is the solution I found to restore Cmd + XCVZA on macos:

$ cat > ~/.config/gtk-3.0/gtk.css
@binding-set gtk-meta-cut-copy-paste
{
        unbind "<Control>x";
        unbind "<Control>c";
        unbind "<Control>v";
        unbind "<Control>a";
        unbind "<Control>z";

	bind "<Meta>x" { "cut-clipboard" () };
        bind "<Meta>c" { "copy-clipboard" () };
        bind "<Meta>v" { "paste-clipboard" () };
        bind "<Meta>a" { "select-all" (1) };
        bind "<Meta>z" { "undo" () };
}

* {
        -gtk-key-bindings: gtk-meta-cut-copy-paste
}