use F3 for back from the explore page, #219

This commit is contained in:
larshp 2016-05-31 18:19:46 +00:00
parent 80f03391c0
commit 156333cb4f

View File

@ -3,7 +3,7 @@ REPORT zabapgit.
* See http://www.abapgit.org
CONSTANTS: gc_xml_version TYPE string VALUE 'v1.0.0', "#EC NOTEXT
gc_abap_version TYPE string VALUE 'v1.10.0'. "#EC NOTEXT
gc_abap_version TYPE string VALUE 'v1.10.1'. "#EC NOTEXT
********************************************************************************
* The MIT License (MIT)
@ -17944,9 +17944,18 @@ CLASS lcl_gui IMPLEMENTATION.
METHOD back.
DATA: lv_index TYPE i.
DATA: lv_index TYPE i,
lv_url TYPE c LENGTH 100.
* workaround for explore page
go_html_viewer->get_current_url( IMPORTING url = lv_url ).
cl_gui_cfw=>flush( ).
IF lv_url CP 'http*'.
go_html_viewer->go_back( ).
RETURN.
ENDIF.
lv_index = lines( gt_stack ).
IF lv_index = 0.