From d74284bd8b86c42d0c26ae5b3707ff23caaf20cf Mon Sep 17 00:00:00 2001 From: Marc Bernard <59966492+mbtools@users.noreply.github.com> Date: Tue, 16 Jun 2020 16:54:01 +0200 Subject: [PATCH] Minor improvements of icons in repo view (#3493) * Minor improvement for icons in repo view * Add Icon Legend in "Debug Info" A place to see available icons (will copy it to documentation). * Pretty print * Reverse icons in debug info Icons are now in docs. No need for this here Co-authored-by: Lars Hvam --- src/ui/zcl_abapgit_gui_view_repo.clas.abap | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/ui/zcl_abapgit_gui_view_repo.clas.abap b/src/ui/zcl_abapgit_gui_view_repo.clas.abap index df2420e9a..6d9c1469a 100644 --- a/src/ui/zcl_abapgit_gui_view_repo.clas.abap +++ b/src/ui/zcl_abapgit_gui_view_repo.clas.abap @@ -527,10 +527,12 @@ CLASS ZCL_ABAPGIT_GUI_VIEW_REPO IMPLEMENTATION. METHOD get_item_icon. CASE is_item-obj_type. - WHEN 'PROG' OR 'CLAS' OR 'FUGR'. + WHEN 'PROG' OR 'CLAS' OR 'FUGR' OR 'INTF' OR 'TYPE'. rv_html = zcl_abapgit_html=>icon( 'file-code/darkgrey' ). - WHEN 'W3MI' OR 'W3HT'. + WHEN 'W3MI' OR 'W3HT' OR 'SFPF'. rv_html = zcl_abapgit_html=>icon( 'file-image/darkgrey' ). + WHEN 'DEVC'. + rv_html = zcl_abapgit_html=>icon( 'box/darkgrey' ). WHEN ''. rv_html = space. " no icon WHEN OTHERS.