From eb8527675c0d53a11d98a67f905103e536581ec8 Mon Sep 17 00:00:00 2001 From: TheLastProject Date: Fri, 20 Feb 2015 16:38:09 +0100 Subject: [PATCH] Oops, default for file transfer message should be no --- src/widget/widget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/widget/widget.cpp b/src/widget/widget.cpp index a9af76975..476ad41b9 100644 --- a/src/widget/widget.cpp +++ b/src/widget/widget.cpp @@ -502,7 +502,7 @@ bool Widget::confirmExecutableOpen(const QFileInfo file) { if (file.isExecutable()) { - if(!GUI::askQuestion(tr("Executable file", "popup title"), tr("You have asked qTox to open an executable file. Executable files can potentially damage your computer. Are you sure want to open this file?", "popup text"))) + if(!GUI::askQuestion(tr("Executable file", "popup title"), tr("You have asked qTox to open an executable file. Executable files can potentially damage your computer. Are you sure want to open this file?", "popup text"), false, true)) { return false; }