We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a638f5 commit 90bfac4Copy full SHA for 90bfac4
src/View/Window.vala
@@ -796,14 +796,9 @@ public class Files.View.Window : Hdy.ApplicationWindow {
796
unowned var selected_files = current_container.view.get_selected_files ();
797
if (selected_files == null) {
798
bookmark_list.insert_uri_at_end (current_container.location.get_uri (), "");
799
- return;
800
- }
801
-
802
- if (selected_files.first ().next == null) {
+ } else if (selected_files.first ().next == null) {
803
bookmark_list.insert_uri_at_end (selected_files.first ().data.uri, "");
804
805
806
- // Ignore if more than one item selected
+ } // Ignore if more than one item selected
807
}
808
809
private void action_find (GLib.SimpleAction action, GLib.Variant? param) {
0 commit comments