mirror of https://github.com/procxx/kepka.git
Fixed "Show in Folder" feature on Gnome 3.30+.
Parameter --no-desktop is deprecated and should not be used. Closes #5896.
This commit is contained in:
parent
ba8257ce64
commit
14ad7a2479
|
@ -64,7 +64,7 @@ void UnsafeShowInFolder(const QString &filepath) {
|
|||
arguments << "--select" << absolutePath;
|
||||
} else if (output == qstr("nautilus.desktop") || output == qstr("org.gnome.Nautilus.desktop") || output == qstr("nautilus-folder-handler.desktop")) {
|
||||
command = qsl("nautilus");
|
||||
arguments << "--no-desktop" << absolutePath;
|
||||
arguments << absolutePath;
|
||||
} else if (output == qstr("nemo.desktop")) {
|
||||
command = qsl("nemo");
|
||||
arguments << "--no-desktop" << absolutePath;
|
||||
|
|
Loading…
Reference in New Issue