e_view_text: fix indentation 35/323235/2
authorJihoon Kim <jihoon48.kim@samsung.com>
Thu, 24 Apr 2025 06:44:53 +0000 (15:44 +0900)
committerTizen Window System <tizen.windowsystem@gmail.com>
Thu, 24 Apr 2025 12:08:58 +0000 (12:08 +0000)
Change-Id: I071448e1be17849d7dd808018cca4a169a1de208
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
src/bin/core/e_view_text.c

index c230ca3c38a5bc723adf28f8492b0cfcc86b3c3f..345289e87fbad2d6070d9d3e85a7a14f202f564e 100644 (file)
@@ -51,13 +51,13 @@ _view_text_evas_object_cb_resize(void *data, Evas *e, Evas_Object *obj, void *ev
 
    // for debugging
    evas_object_geometry_get(text->view.eo,
-         &width, &height, NULL, NULL);
+                            &width, &height, NULL, NULL);
    if (width != text->width || height!= text->height)
      {
         ERR("e_view_text(%p) size mismatched: %dx%d != %dx%d", text,
             text->width, text->height, width, height);
 
-        // FIXME: set the size of evas_obejct to the size of text
+        // FIXME: set the size of evas_object to the size of text
         //       for avoiding regression.
         text->width = width;
         text->height = height;
@@ -131,7 +131,7 @@ e_view_text_color_set(E_View_Text *text, int r, int g, int b, int a)
 {
    if (text == NULL) return;
 
-       e_view_color_set(&text->view, r, g, b, a);
+   e_view_color_set(&text->view, r, g, b, a);
 }
 
 E_API void