diff options
author | Valentin Villenave <[email protected]> | 2021-10-13 17:39:30 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2022-03-10 19:31:29 +0100 |
commit | 6f8f4c8b3f82af1f0aa811cf190bc4b74678e267 (patch) | |
tree | 7750cb38edd304a067bc4b13bf4dd380d9621db1 /src/fr-window.c | |
parent | bc3d0ca4b7c7672c20a1096ba614bf7b536ded74 (diff) | |
download | engrampa-6f8f4c8b3f82af1f0aa811cf190bc4b74678e267.tar.bz2 engrampa-6f8f4c8b3f82af1f0aa811cf190bc4b74678e267.tar.xz |
Accessibility: add proper mnemonic relations and labelling
Diffstat (limited to 'src/fr-window.c')
-rw-r--r-- | src/fr-window.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/fr-window.c b/src/fr-window.c index 3cc888f..6023336 100644 --- a/src/fr-window.c +++ b/src/fr-window.c @@ -5776,6 +5776,8 @@ fr_window_construct (FrWindow *window) gtk_entry_set_icon_from_icon_name (GTK_ENTRY (window->priv->location_entry), GTK_ENTRY_ICON_PRIMARY, "folder"); + gtk_label_set_mnemonic_widget (window->priv->location_label, + window->priv->location_entry); gtk_box_pack_start (GTK_BOX (location_box), window->priv->location_entry, TRUE, TRUE, 5); |