This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository evisum.
View the commit online.
commit 0d28766bc67b66788622487b933b7c13c08b4e12
Author: Alastair Poole <m...@alastairpoole.com>
AuthorDate: Fri Jul 26 10:42:50 2024 +0100
process_view: Fuck the transit.
This is causing far too many issues. We don't need it.
o/
---
src/bin/ui/ui_process_view.c | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/src/bin/ui/ui_process_view.c b/src/bin/ui/ui_process_view.c
index d5f2074..c801bcf 100644
--- a/src/bin/ui/ui_process_view.c
+++ b/src/bin/ui/ui_process_view.c
@@ -1574,8 +1574,8 @@ _manual_tab_add(Evas_Object *parent, Win_Data *wd)
static void
_tab_change(Win_Data *wd, Evas_Object *view, Evas_Object *obj)
{
- Elm_Transit *trans;
- static Eina_Bool first_run = EINA_TRUE;
+ // Elm_Transit *trans;
+ // static Eina_Bool first_run = EINA_TRUE;
elm_object_disabled_set(wd->tab_general, 0);
elm_object_disabled_set(wd->tab_children, 0);
@@ -1586,6 +1586,7 @@ _tab_change(Win_Data *wd, Evas_Object *view, Evas_Object *obj)
evas_object_hide(wd->manual_view);
evas_object_hide(wd->thread_view);
+ /*
if (!first_run)
{
trans = elm_transit_add();
@@ -1594,14 +1595,14 @@ _tab_change(Win_Data *wd, Evas_Object *view, Evas_Object *obj)
elm_transit_duration_set(trans, 0.15);
elm_transit_effect_blend_add(trans);
}
-
+ */
wd->current_view = view;
evas_object_show(view);
- if (!first_run) elm_transit_go(trans);
+ //if (!first_run) elm_transit_go(trans);
elm_object_disabled_set(obj, 1);
- first_run = EINA_FALSE;
+ //first_run = EINA_FALSE;
}
static void
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.