This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch master
in repository entice.

View the commit online.

commit c2daa1a4dacc370964b21d2abffbdf3f59e0a5ef
Author: Vincent Torri <[email protected]>
AuthorDate: Tue Dec 23 21:14:26 2025 +0100

    fix theme
---
 data/themes/default.edc | 10 ++++++++++
 src/bin/entice_win.c    |  2 +-
 2 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/data/themes/default.edc b/data/themes/default.edc
index 625e9e7..588687b 100644
--- a/data/themes/default.edc
+++ b/data/themes/default.edc
@@ -515,9 +515,19 @@ collections
         }
         description { state: "disable" 0.0;
           inherit: "default" 0.0;
+          rel1.offset: 2*GB_PAD GB_PAD;
+          rel2.offset: 2*GB_PAD GB_PAD;
           visible: 0;
         }
       }
+      program { signal: "state,win,fullscreen"; source: "entice";
+        action: STATE_SET "disable" 0.0;
+        target: "entice.close";
+      }
+      program { signal: "state,win,unfullscreen"; source: "entice";
+        action: STATE_SET "default" 0.0;
+        target: "entice.close";
+      }
 
       STOP_FADE("close")
 
diff --git a/src/bin/entice_win.c b/src/bin/entice_win.c
index 17a02eb..8abdc08 100644
--- a/src/bin/entice_win.c
+++ b/src/bin/entice_win.c
@@ -100,7 +100,7 @@ _cb_unfullscreen(void *data EINA_UNUSED, Evas_Object *win, void *event EINA_UNUS
     entice = evas_object_data_get(win, "entice");
     if (!elm_win_fullscreen_get(win))
     {
-        elm_layout_signal_emit(entice->layout, "state,win,normal", "entice");
+        elm_layout_signal_emit(entice->layout, "state,win,unfullscreen", "entice");
         elm_win_noblank_set(win, EINA_FALSE);
     }
 }

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to