Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/zcl_gui_nic_editor.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ CLASS ZCL_GUI_NIC_EDITOR IMPLEMENTATION.
iv_side = 'WIDTH'
).
ENDIF.
mv_editor_width -= 10.
mv_editor_width = mv_editor_width - 10.
ENDIF.

IF mv_editor_height IS INITIAL.
Expand All @@ -168,7 +168,7 @@ CLASS ZCL_GUI_NIC_EDITOR IMPLEMENTATION.
iv_side = 'HEIGHT'
).
ENDIF.
mv_editor_height -= 60.
mv_editor_height = mv_editor_height - 60.
ENDIF.

DATA(lv_html) = mv_editor_source_template.
Expand Down