efl_ui_widget: remove missing break in switch 71/252571/2
authorShinwoo Kim <cinoo.kim@samsung.com>
Fri, 29 Jan 2021 10:12:24 +0000 (19:12 +0900)
committerShinwoo Kim <cinoo.kim@samsung.com>
Mon, 1 Feb 2021 01:21:11 +0000 (01:21 +0000)
Current code is correct logically.
But someday we could make a mistake, if there is missing break in switch.
So remove the missing break.

Change-Id: I61094a9aa788e31d5744bb0ace6a744c869cf300

src/lib/elementary/efl_ui_widget.c

index 46aea6b..a87b968 100644 (file)
@@ -8388,6 +8388,8 @@ _efl_ui_widget_efl_access_component_accessible_at_point_get(Eo *obj, Elm_Widget_
                     return child;
                }
           }
+        DBG("Find accessible from bottom");
+        break;
       case ELM_ATSPI_ROLE_INPUT_METHOD_WINDOW:
       case ELM_ATSPI_ROLE_DIALOG:
       case ELM_ATSPI_ROLE_PAGE_TAB: