[Github-comments] [geany/geany] build menu: images missing? (#2302)

LarsGit223 notifications at xxxxx
Sun Sep 15 13:08:12 UTC 2019


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
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.geany.org/pipermail/github-comments/attachments/20190915/5f1839cf/attachment.html>


More information about the Github-comments mailing list