You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
631 B
26 lines
631 B
From a7239bd930cc840b59cbe2b1fed0a49301a78473 Mon Sep 17 00:00:00 2001
|
|
From: Uwe Scholz <uwescholz@src.gnome.org>
|
|
Date: Sat, 23 May 2015 21:43:52 +0200
|
|
Subject: Only return true if mime_exec_single() is executed
|
|
|
|
|
|
diff --git a/src/gnome-cmd-file-list.cc b/src/gnome-cmd-file-list.cc
|
|
index d46ed16..8f689a2 100644
|
|
--- a/src/gnome-cmd-file-list.cc
|
|
+++ b/src/gnome-cmd-file-list.cc
|
|
@@ -1177,9 +1177,10 @@ inline gboolean mime_exec_file (GnomeCmdFile *f)
|
|
if (f->info->type == GNOME_VFS_FILE_TYPE_REGULAR)
|
|
{
|
|
mime_exec_single (f);
|
|
+ return TRUE;
|
|
}
|
|
+ return FALSE;
|
|
|
|
- return TRUE;
|
|
}
|
|
|
|
|
|
--
|
|
cgit v0.10.2
|
|
|