e_blur_video_capture: Fix the video capture object is not shown 32/319532/1
authorChangyeon Lee <cyeon.lee@samsung.com>
Wed, 12 Feb 2025 10:07:20 +0000 (19:07 +0900)
committerChangyeon Lee <cyeon.lee@samsung.com>
Wed, 12 Feb 2025 11:41:11 +0000 (20:41 +0900)
Fix wrong checking source object visible

Change-Id: I6e33cde89e45f04b96035f8049a0ec682e70f43d

src/bin/server/e_blur_video_capture.c

index 3bf479b071e7832eabd1f890010a3ca7ead223be..8a9a3cf2c41222002421d75d3ed674c114bba88e 100644 (file)
@@ -680,7 +680,7 @@ _e_blur_video_capture_client_object_rectangle_init(E_Blur_Video_Capture_Client *
 
    if (!client->presentation_visible) return;
    if (!evas_object_visible_get(object->blur_obj)) return;
-   if (_e_blur_video_capture_source_object_visible_get()) return;
+   if (!_e_blur_video_capture_source_object_visible_get()) return;
 
    _e_blur_video_capture_object_show(object);
 }
@@ -704,7 +704,7 @@ _e_blur_video_capture_client_object_behind_init(E_Blur_Video_Capture_Client *cli
 
    if (!client->presentation_visible) return;
    if (!evas_object_visible_get(object->blur_obj)) return;
-   if (_e_blur_video_capture_source_object_visible_get()) return;
+   if (!_e_blur_video_capture_source_object_visible_get()) return;
 
    _e_blur_video_capture_object_show(object);
 }