diff options
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/menus/project.c | 2 | ||||
-rw-r--r-- | src/gui/panels/panel.c | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/gui/menus/project.c b/src/gui/menus/project.c index 56557f9..3c85cd8 100644 --- a/src/gui/menus/project.c +++ b/src/gui/menus/project.c @@ -147,7 +147,7 @@ void update_menu_project_for_project(GtkWidget *widget, GStudyProject *project, for (i = 0; i < count; i++) { - desc = g_loaded_binary_get_filename(binaries[i], true); + desc = g_loaded_binary_get_name(binaries[i], true); submenuitem = qck_create_menu_item(NULL, NULL, desc, G_CALLBACK(mcb_project_remove_binary), project); diff --git a/src/gui/panels/panel.c b/src/gui/panels/panel.c index 16f1532..9a1e1c2 100644 --- a/src/gui/panels/panel.c +++ b/src/gui/panels/panel.c @@ -428,7 +428,7 @@ static panel_node *create_simple_panel_node_for_item(GPanelItem *item, const cha editem = G_EDITOR_ITEM(item); gtk_dock_panel_add_widget(GTK_DOCK_STATION(station), - editem->widget, editem->name); + editem->widget, editem->name, item->lname); return result; @@ -685,7 +685,8 @@ static void insert_item_as_panel_node(GPanelItem *item, panel_node *node, const if (strcmp(node->path, path) == 0) gtk_dock_panel_add_widget(GTK_DOCK_STATION(node->station), G_EDITOR_ITEM(item)->widget, - G_EDITOR_ITEM(item)->name); + G_EDITOR_ITEM(item)->name, + item->lname); /* On ne peut aller plus loin, on doit diviser... */ else |