iconz: raster

Not enough time hope you don't mind and thanks :)
This commit is contained in:
Alastair Poole 2021-01-17 10:51:22 +00:00
parent 28f6ab7a16
commit b478ef0219
7 changed files with 6 additions and 5 deletions

BIN
data/images/actions.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

BIN
data/images/manual.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -11,5 +11,6 @@ install_data('go-up.png', 'go-down.png',
'clo.png', 'bolt.png', 'menu.png',
'lovethisdogharvey.png', 'application.png',
'e.png', 'border.png', 'freebsd.png', 'linux.png',
'on.png', 'off.png', 'proc.png',
'on.png', 'off.png', 'proc.png', 'manual.png',
'actions.png', 'threads.png',
install_dir: join_paths(dir_data, 'evisum/images'))

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 7.8 KiB

BIN
data/images/threads.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

View File

@ -376,7 +376,7 @@ evisum_ui_main_menu_create(Ui *ui, Evas_Object *parent, Evas_Object *obj)
_menu_disk_activity_clicked_cb, ui);
elm_box_pack_end(hbox, btn);
btn = _btn_create(hbox, "misc", _("Sensors"),
btn = _btn_create(hbox, "sensor", _("Sensors"),
_menu_sensors_activity_clicked_cb, ui);
elm_box_pack_end(hbox, btn);

View File

@ -1097,9 +1097,9 @@ _item_menu_info_add(Evas_Object *menu, Elm_Object_Item *menu_it, Ui_Data *pd)
{
elm_menu_item_add(menu, menu_it, evisum_icon_path_get("info"),
_("General"), _item_menu_general_cb, pd);
elm_menu_item_add(menu, menu_it, evisum_icon_path_get("process"),
elm_menu_item_add(menu, menu_it, evisum_icon_path_get("proc"),
_("Children"), _item_menu_children_cb, pd);
elm_menu_item_add(menu, menu_it, evisum_icon_path_get("process"),
elm_menu_item_add(menu, menu_it, evisum_icon_path_get("threads"),
_("Threads"), _item_menu_threads_cb, pd);
elm_menu_item_add(menu, menu_it, evisum_icon_path_get("manual"),
_("Manual"), _item_menu_manual_cb, pd);
@ -1128,7 +1128,7 @@ _item_menu_create(Ui_Data *pd, Proc_Info *proc)
evisum_icon_path_get(evisum_icon_cache_find(proc)),
proc->command, NULL, NULL);
menu_it2 = elm_menu_item_add(menu, menu_it, evisum_icon_path_get("window"),
menu_it2 = elm_menu_item_add(menu, menu_it, evisum_icon_path_get("actions"),
_("Actions"), NULL, NULL);
_item_menu_actions_add(menu, menu_it2, pd);
elm_menu_item_separator_add(menu, menu_it);