diff --git a/source/blender/blenlib/intern/system_win32.cc b/source/blender/blenlib/intern/system_win32.cc index afac15bac6e..72fa2b63fc9 100644 --- a/source/blender/blenlib/intern/system_win32.cc +++ b/source/blender/blenlib/intern/system_win32.cc @@ -596,10 +596,17 @@ void BLI_windows_exception_show_dialog(const char *filepath_crashlog, std::wstring(filepath_crashlog_utf16); TASKDIALOGCONFIG config = {0}; - const TASKDIALOG_BUTTON buttons[] = {{IDRETRY, L"Restart"}, + const TASKDIALOG_BUTTON buttons[] = { + {IDRETRY, L"Restart"}, +#if 0 + /* This lead to a large influx of low quality reports on the tracker, + and has been disabled for that reason, we can re-enable this when + a better workflow has been established. */ {IDOK, L"Report a Bug"}, - {IDHELP, L"View Crash Log"}, - {IDCLOSE, L"Close"}}; +#endif + {IDHELP, L"View Crash Log"}, + {IDCLOSE, L"Close"} + }; config.cbSize = sizeof(config); config.hwndParent = GetActiveWindow();