Skip to content
Snippets Groups Projects
Commit 98ab9b75 authored by Pregmodder's avatar Pregmodder
Browse files

Merge branch 'pregmod-master' into 'pregmod-master'

Fix FCHost compile error on Linux

See merge request !11661
parents 85a02e41 690852b5
No related branches found
No related tags found
1 merge request!11661Fix FCHost compile error on Linux
Pipeline #74986 passed
...@@ -64,10 +64,6 @@ namespace { ...@@ -64,10 +64,6 @@ namespace {
} }
#endif #endif
// kdialog does not support these
mode = static_cast<CefDialogHandler::FileDialogMode>(mode & ~(CefDialogHandler::FileDialogMode::FILE_DIALOG_OVERWRITEPROMPT_FLAG));
mode = static_cast<CefDialogHandler::FileDialogMode>(mode & ~(CefDialogHandler::FileDialogMode::FILE_DIALOG_HIDEREADONLY_FLAG));
switch (mode) { switch (mode) {
case CefDialogHandler::FileDialogMode::FILE_DIALOG_OPEN_MULTIPLE: case CefDialogHandler::FileDialogMode::FILE_DIALOG_OPEN_MULTIPLE:
cmdLine << " --multiple"; [[fallthrough]]; cmdLine << " --multiple"; [[fallthrough]];
...@@ -108,15 +104,7 @@ namespace { ...@@ -108,15 +104,7 @@ namespace {
const std::vector<CefString>& accept_filters) const std::vector<CefString>& accept_filters)
{ {
std::ostringstream cmdLine; std::ostringstream cmdLine;
cmdLine << "zenity --file-selection"; cmdLine << "zenity --file-selection --confirm-overwrite";
// zenity does not support these
mode = static_cast<CefDialogHandler::FileDialogMode>(mode & ~(CefDialogHandler::FileDialogMode::FILE_DIALOG_HIDEREADONLY_FLAG));
if (mode & CefDialogHandler::FileDialogMode::FILE_DIALOG_OVERWRITEPROMPT_FLAG) {
cmdLine << " --confirm-overwrite";
}
mode = static_cast<CefDialogHandler::FileDialogMode>(mode & ~(CefDialogHandler::FileDialogMode::FILE_DIALOG_OVERWRITEPROMPT_FLAG));
switch (mode) { switch (mode) {
case CefDialogHandler::FileDialogMode::FILE_DIALOG_OPEN_MULTIPLE: case CefDialogHandler::FileDialogMode::FILE_DIALOG_OPEN_MULTIPLE:
...@@ -247,7 +235,7 @@ void FCHostHandler::PlatformTitleChange(CefRefPtr<CefBrowser> browser, const Cef ...@@ -247,7 +235,7 @@ void FCHostHandler::PlatformTitleChange(CefRefPtr<CefBrowser> browser, const Cef
bool FCHostHandler::OnFileDialog(CefRefPtr<CefBrowser> /* browser */, CefDialogHandler::FileDialogMode mode, bool FCHostHandler::OnFileDialog(CefRefPtr<CefBrowser> /* browser */, CefDialogHandler::FileDialogMode mode,
const CefString& title, const CefString& default_file_path, const std::vector<CefString>& accept_filters, const CefString& title, const CefString& default_file_path, const std::vector<CefString>& accept_filters,
int /* selected_accept_filter */, CefRefPtr<CefFileDialogCallback> callback) CefRefPtr<CefFileDialogCallback> callback)
{ {
static DialogHelper helper; static DialogHelper helper;
...@@ -262,6 +250,6 @@ bool FCHostHandler::OnFileDialog(CefRefPtr<CefBrowser> /* browser */, CefDialogH ...@@ -262,6 +250,6 @@ bool FCHostHandler::OnFileDialog(CefRefPtr<CefBrowser> /* browser */, CefDialogH
std::vector<CefString> selected; std::vector<CefString> selected;
selected.push_back(fn); selected.push_back(fn);
callback->Continue(0, selected); callback->Continue(selected);
return true; return true;
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment