diff --git a/src/FuncRequest.cpp b/src/FuncRequest.cpp index 691456a69a..e7112f6ea4 100644 --- a/src/FuncRequest.cpp +++ b/src/FuncRequest.cpp @@ -11,6 +11,7 @@ #include #include "FuncRequest.h" +#include "LyXAction.h" #include #include @@ -107,7 +108,8 @@ bool operator==(FuncRequest const & lhs, FuncRequest const & rhs) ostream & operator<<(ostream & os, FuncRequest const & cmd) { return os - << " action: " << cmd.action + << " action: " << cmd.action + << " [" << lyxaction.getActionName(cmd.action) << "] " << " arg: '" << to_utf8(cmd.argument()) << "'" << " x: " << cmd.x << " y: " << cmd.y; diff --git a/status.16x b/status.16x index 0d5b16df1e..b5df2a5c84 100644 --- a/status.16x +++ b/status.16x @@ -57,6 +57,8 @@ What's new - Speed up editing when the document contains paragraphs with many (>1000) insets (bug 4443). +- Improve debug output when tracing what actions are triggered. + * DOCUMENTATION AND LOCALIZATION