ecore: Remove redundant if statement
authormike_m <mike_m@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Fri, 8 Jul 2011 06:38:18 +0000 (06:38 +0000)
committermike_m <mike_m@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Fri, 8 Jul 2011 06:38:18 +0000 (06:38 +0000)
Signed-off-by: Mike McCormack <mj.mccormack@samsung.com>
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@61143 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/lib/ecore/ecore_main.c

index 9196f17..44f7689 100644 (file)
@@ -493,11 +493,8 @@ _ecore_main_gsource_prepare(GSource *source __UNUSED__, gint *next_time)
          _ecore_timer_cleanup();
 
          /* when idling, busy loop checking the fds only */
-         if (!ecore_idling)
-           {
-              _ecore_idle_enterer_call();
-              _ecore_throttle();
-           }
+         _ecore_idle_enterer_call();
+         _ecore_throttle();
      }
 
    /* don't check fds if somebody quit */