Loading src/com/cyanogenmod/filemanager/ui/widgets/NavigationView.java +14 −8 Original line number Diff line number Diff line Loading @@ -906,7 +906,11 @@ public class NavigationView extends RelativeLayout implements * * @param out Fade out (true); Fade in (false) */ void fadeEfect(boolean out) { void fadeEfect(final boolean out) { Activity activity = (Activity)getContext(); activity.runOnUiThread(new Runnable() { @Override public void run() { Animation fadeAnim = out ? new AlphaAnimation(1, 0) : new AlphaAnimation(0, 1); Loading @@ -915,6 +919,8 @@ public class NavigationView extends RelativeLayout implements fadeAnim.setInterpolator(new AccelerateInterpolator()); NavigationView.this.startAnimation(fadeAnim); } }); } }; task.execute(fNewDir); } Loading src/com/cyanogenmod/filemanager/util/ExceptionUtil.java +1 −0 Original line number Diff line number Diff line Loading @@ -293,6 +293,7 @@ public final class ExceptionUtil { Object result = CommandHelper.reexecute( context, executable, null); if (relaunchable.getTask() != null) { relaunchable.getTask().cancel(true); relaunchable.getTask().execute(result); } } Loading Loading
src/com/cyanogenmod/filemanager/ui/widgets/NavigationView.java +14 −8 Original line number Diff line number Diff line Loading @@ -906,7 +906,11 @@ public class NavigationView extends RelativeLayout implements * * @param out Fade out (true); Fade in (false) */ void fadeEfect(boolean out) { void fadeEfect(final boolean out) { Activity activity = (Activity)getContext(); activity.runOnUiThread(new Runnable() { @Override public void run() { Animation fadeAnim = out ? new AlphaAnimation(1, 0) : new AlphaAnimation(0, 1); Loading @@ -915,6 +919,8 @@ public class NavigationView extends RelativeLayout implements fadeAnim.setInterpolator(new AccelerateInterpolator()); NavigationView.this.startAnimation(fadeAnim); } }); } }; task.execute(fNewDir); } Loading
src/com/cyanogenmod/filemanager/util/ExceptionUtil.java +1 −0 Original line number Diff line number Diff line Loading @@ -293,6 +293,7 @@ public final class ExceptionUtil { Object result = CommandHelper.reexecute( context, executable, null); if (relaunchable.getTask() != null) { relaunchable.getTask().cancel(true); relaunchable.getTask().execute(result); } } Loading