provide more info when dbus error on e_filemanager is run

alos paledit now is enlightenment_paledit
This commit is contained in:
Carsten Haitzler 2021-05-19 16:53:56 +01:00
parent ae85482ab0
commit eb9f23979b
4 changed files with 5 additions and 4 deletions

View File

@ -46,12 +46,13 @@ fm_open_reply(void *data EINA_UNUSED, const Eldbus_Message *msg,
Eldbus_Pending *dbus_pending EINA_UNUSED)
{
const char *name, *txt;
if (eldbus_message_error_get(msg, &name, &txt))
{
retval = EXIT_FAILURE;
EINA_LOG_ERR("%s: %s", name, txt);
fprintf(stderr, "Did you unload the EFM module? Try loading it.\n");
}
pending--;
if (!pending) ecore_main_loop_quit();
}

View File

Before

Width:  |  Height:  |  Size: 5.5 KiB

After

Width:  |  Height:  |  Size: 5.5 KiB

View File

@ -1,4 +1,4 @@
executable('e_paledit',
executable('enlightenment_paledit',
[ 'main.c',
'main.h',
'colsel.c',
@ -12,9 +12,9 @@ executable('e_paledit',
install : true
)
install_data('e_paledit.desktop',
install_data('enlightenment_paledit.desktop',
install_dir: join_paths(dir_data, 'applications')
)
install_data('e_paledit.png',
install_data('enlightenment_paledit.png',
install_dir: join_paths(dir_data, 'icons/hicolor/128x128/apps')
)