Permalink
Browse files

Exclude mountpoints when handling commandline arguments

This is the intended default behavior.

https://bugzilla.gnome.org/show_bug.cgi?id=740245
  • Loading branch information...
1 parent 0b850c2 commit 9c4dc12f4d97a440921e36b59268f198a71d3d00 @stfacc stfacc committed Nov 17, 2014
Showing with 1 addition and 1 deletion.
  1. +1 −1 src/baobab-application.vala
@@ -43,7 +43,7 @@ namespace Baobab {
protected override void open (File[] files, string hint) {
foreach (var file in files) {
var window = new Window (this);
- window.scan_directory (file);
+ window.scan_directory (file, ScanFlags.EXCLUDE_MOUNTS);
}
}

0 comments on commit 9c4dc12

Please sign in to comment.