Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a3c1736c authored by jruesga's avatar jruesga
Browse files

Deselect all items on an operation (create folder, delete file, ...)

parent 76d03336
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -738,6 +738,7 @@ public class NavigationActivity extends Activity
            // Refresh all
            getCurrentNavigationView().refresh();
        }
        this.getCurrentNavigationView().onDeselectAll();
    }

    /**
@@ -752,6 +753,7 @@ public class NavigationActivity extends Activity
            //Remove from history
            removeFromHistory((FileSystemObject)o);
        }
        this.getCurrentNavigationView().onDeselectAll();
    }

    /**
+2 −0
Original line number Diff line number Diff line
@@ -836,6 +836,7 @@ public class NavigationView extends RelativeLayout implements
        if (o instanceof FileSystemObject) {
            refresh((FileSystemObject)o);
        }
        onDeselectAll();
    }

    /**
@@ -846,6 +847,7 @@ public class NavigationView extends RelativeLayout implements
        if (o instanceof FileSystemObject) {
            removeItem((FileSystemObject)o);
        }
        onDeselectAll();
    }

    /**