On looking at the build code I noticed the following table:

``` C
static struct BuildMenuItemSpec {
        const gchar     *stock_id;
        const gint       key_binding;
        const guint      build_grp;
        const guint      build_cmd;
        const gchar     *fix_label;
        Callback *cb;
} build_menu_specs[] = {
        {GTK_STOCK_CONVERT, GEANY_KEYS_BUILD_COMPILE, 
GBO_TO_GBG(GEANY_GBO_COMPILE),
                GBO_TO_CMD(GEANY_GBO_COMPILE), NULL, on_build_menu_item},
        {GEANY_STOCK_BUILD, GEANY_KEYS_BUILD_LINK, GBO_TO_GBG(GEANY_GBO_BUILD),
                GBO_TO_CMD(GEANY_GBO_BUILD), NULL, on_build_menu_item},
        {NULL, -1, MENU_FT_REST,
                GBO_TO_CMD(GEANY_GBO_BUILD) + 1, NULL, on_build_menu_item},

    /*...more entries... */
```

As I understand the code images are loaded from the stock IDs (e.g. 
```GTK_STOCK_CONVERT```). But on my system I do not see any images in the build 
menu (tested on GTK2 and 3). My question: do other people see any images in the 
build menu? Might this be a desktop issue?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/2302

Reply via email to