diff options
author | William Wold <[email protected]> | 2020-02-19 16:59:18 -0500 |
---|---|---|
committer | Martin Wimpress <[email protected]> | 2020-02-20 09:58:01 +0000 |
commit | 8aa77585103ced8ce09bb2542fa80440579e1d98 (patch) | |
tree | 337ab6931fbc58f4834dc7dcae3647118afd7482 | |
parent | d6f714f181c36af17ed8394aeb0dda7704c27be1 (diff) | |
download | mate-panel-8aa77585103ced8ce09bb2542fa80440579e1d98.tar.bz2 mate-panel-8aa77585103ced8ce09bb2542fa80440579e1d98.tar.xz |
Enable applications in addto menu (fixes 1055) (#1056)
-rw-r--r-- | mate-panel/panel-addto.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mate-panel/panel-addto.c b/mate-panel/panel-addto.c index dfebba26..0319e051 100644 --- a/mate-panel/panel-addto.c +++ b/mate-panel/panel-addto.c @@ -528,6 +528,7 @@ panel_addto_prepend_directory (GSList **parent_list, data->item_info.icon = gicon ? g_icon_to_string(gicon) : g_strdup(PANEL_ICON_UNKNOWN); data->item_info.menu_filename = g_strdup (filename); data->item_info.menu_path = matemenu_tree_directory_make_path (directory, NULL); + data->item_info.enabled = TRUE; data->item_info.static_data = FALSE; /* We should set the iid here to something and do @@ -562,6 +563,7 @@ panel_addto_prepend_entry (GSList **parent_list, data->item_info.description = g_strdup (g_app_info_get_description(G_APP_INFO(ginfo))); data->item_info.icon = gicon ? g_icon_to_string(gicon) : g_strdup(PANEL_ICON_UNKNOWN); data->item_info.launcher_path = g_strdup (matemenu_tree_entry_get_desktop_file_path (entry)); + data->item_info.enabled = TRUE; data->item_info.static_data = FALSE; *parent_list = g_slist_prepend (*parent_list, data); |