diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2021-10-18 14:49:31 +0200 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2021-10-18 14:50:31 +0200 |
commit | e3dc2fecfac98427efb7a7efd319e1f2a7bead68 (patch) | |
tree | 4918c77f597182a5cca811cbb1cf0c1b6b5ee2e5 | |
parent | a6972e4c6e5653f97f29e6aefa4a1840a3105055 (diff) | |
download | fiv-e3dc2fecfac98427efb7a7efd319e1f2a7bead68.tar.gz fiv-e3dc2fecfac98427efb7a7efd319e1f2a7bead68.tar.xz fiv-e3dc2fecfac98427efb7a7efd319e1f2a7bead68.zip |
Make a FIXME about bindings more precise
-rw-r--r-- | fastiv.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -448,7 +448,7 @@ main(int argc, char *argv[]) gtk_accel_group_connect(accel_group, GDK_KEY_o, GDK_CONTROL_MASK, 0, g_cclosure_new(G_CALLBACK(on_open), NULL, NULL)); - // FIXME: The left/right arrows do not work, for whatever reason. + // FIXME: The left/right arrows can't be bound this way at all. gtk_accel_group_connect(accel_group, GDK_KEY_Left, 0, 0, g_cclosure_new(G_CALLBACK(on_previous), NULL, NULL)); gtk_accel_group_connect(accel_group, GDK_KEY_Page_Up, 0, 0, |