mirror of https://github.com/procxx/kepka.git
Fix directory opening with portal and use them by default with KDE
This commit is contained in:
parent
c1f3fe1961
commit
7bc86cc9af
|
@ -83,11 +83,11 @@ constexpr auto kPreviewHeight = 512;
|
||||||
using Type = ::FileDialog::internal::Type;
|
using Type = ::FileDialog::internal::Type;
|
||||||
|
|
||||||
#ifndef TDESKTOP_DISABLE_GTK_INTEGRATION
|
#ifndef TDESKTOP_DISABLE_GTK_INTEGRATION
|
||||||
bool NativeSupported() {
|
bool NativeSupported(Type type = Type::ReadFile) {
|
||||||
#ifndef TDESKTOP_FORCE_GTK_FILE_DIALOG
|
#ifndef TDESKTOP_FORCE_GTK_FILE_DIALOG
|
||||||
return false;
|
return false;
|
||||||
#endif // TDESKTOP_FORCE_GTK_FILE_DIALOG
|
#endif // TDESKTOP_FORCE_GTK_FILE_DIALOG
|
||||||
return !Platform::UseXDGDesktopPortal()
|
return (!Platform::UseXDGDesktopPortal() || type == Type::ReadFolder)
|
||||||
&& Platform::internal::GdkHelperLoaded()
|
&& Platform::internal::GdkHelperLoaded()
|
||||||
&& (Libs::gtk_widget_hide_on_delete != nullptr)
|
&& (Libs::gtk_widget_hide_on_delete != nullptr)
|
||||||
&& (Libs::gtk_clipboard_store != nullptr)
|
&& (Libs::gtk_clipboard_store != nullptr)
|
||||||
|
@ -192,7 +192,7 @@ bool Get(
|
||||||
parent = parent->window();
|
parent = parent->window();
|
||||||
}
|
}
|
||||||
#ifndef TDESKTOP_DISABLE_GTK_INTEGRATION
|
#ifndef TDESKTOP_DISABLE_GTK_INTEGRATION
|
||||||
if (NativeSupported()) {
|
if (NativeSupported(type)) {
|
||||||
return GetNative(
|
return GetNative(
|
||||||
parent,
|
parent,
|
||||||
files,
|
files,
|
||||||
|
|
|
@ -266,7 +266,7 @@ bool UseXDGDesktopPortal() {
|
||||||
const auto envVar = qEnvironmentVariableIsSet("TDESKTOP_USE_PORTAL");
|
const auto envVar = qEnvironmentVariableIsSet("TDESKTOP_USE_PORTAL");
|
||||||
const auto portalPresent = IsXDGDesktopPortalPresent();
|
const auto portalPresent = IsXDGDesktopPortalPresent();
|
||||||
|
|
||||||
return envVar && portalPresent;
|
return (DesktopEnvironment::IsKDE() || envVar) && portalPresent;
|
||||||
}();
|
}();
|
||||||
|
|
||||||
return UsePortal;
|
return UsePortal;
|
||||||
|
|
Loading…
Reference in New Issue