From 1da148c8bea8376e5e156ef9ed53159b9a72e2c6 Mon Sep 17 00:00:00 2001 From: Alexander Bock Date: Thu, 15 Sep 2016 13:27:44 +0200 Subject: [PATCH] Fix Interactionhandler output file --- src/interaction/interactionhandler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interaction/interactionhandler.cpp b/src/interaction/interactionhandler.cpp index 219461ed84..8f8d389c09 100644 --- a/src/interaction/interactionhandler.cpp +++ b/src/interaction/interactionhandler.cpp @@ -953,7 +953,7 @@ void InteractionHandler::writeKeyboardDocumentation(const std::string& type, con if (type == "text") { std::ofstream f; f.exceptions(~std::ofstream::goodbit); - f.open(file); + f.open(absPath(file)); for (const auto& p : _keyLua) { f << std::to_string(p.first) << ": " <<