e_client: remove "fullscreen" evas_object_smart_callback in _e_client_maximize 35/279835/1 accepted/tizen/unified/20220818.210825 submit/tizen/20220818.075750
authorDoyoun Kang <doyoun.kang@samsung.com>
Thu, 18 Aug 2022 06:42:05 +0000 (15:42 +0900)
committerTizen Window System <tizen.windowsystem@gmail.com>
Thu, 18 Aug 2022 07:45:51 +0000 (16:45 +0900)
The "fullscreen" callback should be called only e_client_fullscreen_set.
If we need a callback later, then we can add evas_object_smart_callback with another name
such as "maximize_fullscreen".

Change-Id: I03074f3463775418cc46798c2bf35e7dcae55afb

src/bin/e_client.c

index b475bc8..69b3ff4 100644 (file)
@@ -2578,7 +2578,6 @@ _e_client_maximize(E_Client *ec, E_Maximize max)
         w = ec->desk->geom.w;
         h = ec->desk->geom.h;
 
-        evas_object_smart_callback_call(ec->frame, "fullscreen", NULL);
         e_client_resize_limit(ec, &w, &h);
         /* center x-direction */
         x1 = ec->desk->geom.x + (ec->desk->geom.w - w) / 2;